Compare commits

..

2 Commits

Author SHA1 Message Date
dfc81ca969 Build improvements
Some checks failed
the build failed
2019-03-12 22:53:12 +01:00
7617f47ba0 Cleanups for Dockerization 2019-03-12 22:50:29 +01:00
5 changed files with 18 additions and 5 deletions

View File

@ -9,4 +9,4 @@ pipeline:
commands:
- go get ./...
- go test
- go build
- CC=/usr/bin/musl-gcc go build --ldflags '-linkmode external -extldflags "-static"'

8
Dockerfile Normal file
View File

@ -0,0 +1,8 @@
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"]

View File

@ -5,6 +5,7 @@ import (
"log"
"net/http"
"net/url"
"os"
"p83.nl/go/indieauth"
)
@ -120,7 +121,7 @@ func (h *IndieAuthHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
log.Println(authURL)
state := RandStringBytes(16)
redirectURI := fmt.Sprintf("%s/auth/callback", "http://localhost:8096")
redirectURI := fmt.Sprintf("%s/auth/callback", os.Getenv("TRACKME_HOST"))
sess.AuthorizationEndpoint = endpoints.AuthorizationEndpoint
sess.Me = meURL.String()

View File

@ -10,7 +10,7 @@ import (
)
func init() {
log.SetFlags(log.LstdFlags|log.Lshortfile)
log.SetFlags(log.LstdFlags | log.Lshortfile)
}
const DBFilename = "./moments.db"
@ -37,6 +37,5 @@ func main() {
http.Handle("/auth/", http.StripPrefix("/auth/", &IndieAuthHandler{}))
http.Handle("/", &indexHandler{DB: db})
http.Handle("/moment", &momentHandler{DB: db})
log.Fatal(http.ListenAndServe(":8096", nil))
log.Fatal(http.ListenAndServe(":8095", nil))
}

View File

@ -2,10 +2,15 @@ package main
import (
"math/rand"
"time"
)
const letterBytes = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
func init() {
rand.Seed(time.Now().Unix())
}
func RandStringBytes(n int) string {
b := make([]byte, n)
for i := range b {