Compare commits
No commits in common. "38e72e2a0c01b884985ee2f5f3f932a845908559" and "1e1ca5d5ac42b250fd9bed826b8e1618c4aceb20" have entirely different histories.
38e72e2a0c
...
1e1ca5d5ac
3 changed files with 5 additions and 13 deletions
13
config.go
13
config.go
|
|
@ -13,11 +13,10 @@ import (
|
|||
)
|
||||
|
||||
type Config struct {
|
||||
Port int
|
||||
NSec string
|
||||
SecretKey nostr.SecretKey
|
||||
NPub string
|
||||
Relays []string
|
||||
Port int
|
||||
NSec string
|
||||
NPub string
|
||||
Relays []string
|
||||
}
|
||||
|
||||
func check(e error) {
|
||||
|
|
@ -72,7 +71,6 @@ func LoadConfig() *Config {
|
|||
npub := nip19.EncodeNpub(pk)
|
||||
log.Printf("Loading private key from file %s. Will send alerts from %s", nsecfile, npub)
|
||||
config.NSec = nsec
|
||||
config.SecretKey = sk
|
||||
} else {
|
||||
sk := nostr.Generate()
|
||||
pk := nostr.GetPublicKey(sk)
|
||||
|
|
@ -80,7 +78,6 @@ func LoadConfig() *Config {
|
|||
npub := nip19.EncodeNpub(pk)
|
||||
log.Printf("Using random private key. Will send alerts from %s", npub)
|
||||
config.NSec = nsec
|
||||
config.SecretKey = sk
|
||||
}
|
||||
|
||||
npub, ok := os.LookupEnv("NOSTR_NPUB")
|
||||
|
|
@ -93,8 +90,6 @@ func LoadConfig() *Config {
|
|||
relays, ok := os.LookupEnv("NOSTR_RELAYS")
|
||||
if ok {
|
||||
config.Relays = strings.Split(relays, ",")
|
||||
} else {
|
||||
config.Relays = strings.Split(relayargs, ",")
|
||||
}
|
||||
return &config
|
||||
}
|
||||
|
|
|
|||
3
main.go
3
main.go
|
|
@ -8,9 +8,6 @@ import (
|
|||
|
||||
func main() {
|
||||
cfg := LoadConfig()
|
||||
for _, relay := range cfg.Relays {
|
||||
log.Printf(relay)
|
||||
}
|
||||
http.HandleFunc("/", alertReceiver)
|
||||
log.Printf("Server starting on http://localhost:%d", cfg.Port)
|
||||
log.Fatal(http.ListenAndServe(fmt.Sprintf(":%d", cfg.Port), nil))
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"io"
|
||||
"fmt"
|
||||
"io"
|
||||
"net/http"
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue