Compare commits
No commits in common. "dfc81ca9696c8665c8fc606f19f1797b60c197c4" and "6b8235c36b974b22a13bc3d6131247f7bc88b108" have entirely different histories.
dfc81ca969
...
6b8235c36b
|
|
@ -9,4 +9,4 @@ pipeline:
|
|||
commands:
|
||||
- go get ./...
|
||||
- go test
|
||||
- CC=/usr/bin/musl-gcc go build --ldflags '-linkmode external -extldflags "-static"'
|
||||
- go build
|
||||
|
|
|
|||
|
|
@ -1,8 +0,0 @@
|
|||
FROM alpine
|
||||
RUN addgroup -S app && adduser -S -G app app
|
||||
RUN apk add --update ca-certificates
|
||||
WORKDIR /data
|
||||
RUN ["chown", "app:app", "/data"]
|
||||
COPY track-me /app/
|
||||
USER app
|
||||
CMD ["/app/track-me"]
|
||||
|
|
@ -5,7 +5,6 @@ import (
|
|||
"log"
|
||||
"net/http"
|
||||
"net/url"
|
||||
"os"
|
||||
"p83.nl/go/indieauth"
|
||||
)
|
||||
|
||||
|
|
@ -121,7 +120,7 @@ func (h *IndieAuthHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|||
log.Println(authURL)
|
||||
|
||||
state := RandStringBytes(16)
|
||||
redirectURI := fmt.Sprintf("%s/auth/callback", os.Getenv("TRACKME_HOST"))
|
||||
redirectURI := fmt.Sprintf("%s/auth/callback", "http://localhost:8096")
|
||||
|
||||
sess.AuthorizationEndpoint = endpoints.AuthorizationEndpoint
|
||||
sess.Me = meURL.String()
|
||||
|
|
|
|||
5
main.go
5
main.go
|
|
@ -10,7 +10,7 @@ import (
|
|||
)
|
||||
|
||||
func init() {
|
||||
log.SetFlags(log.LstdFlags | log.Lshortfile)
|
||||
log.SetFlags(log.LstdFlags|log.Lshortfile)
|
||||
}
|
||||
|
||||
const DBFilename = "./moments.db"
|
||||
|
|
@ -37,5 +37,6 @@ func main() {
|
|||
http.Handle("/auth/", http.StripPrefix("/auth/", &IndieAuthHandler{}))
|
||||
http.Handle("/", &indexHandler{DB: db})
|
||||
http.Handle("/moment", &momentHandler{DB: db})
|
||||
log.Fatal(http.ListenAndServe(":8095", nil))
|
||||
log.Fatal(http.ListenAndServe(":8096", nil))
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user