add handler, html templates, Makefile and migrations

This commit is contained in:
Philipp 2021-08-29 16:37:20 +02:00
commit a06e8db2ff
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 276B613AF9DBE9C3
22 changed files with 1001 additions and 0 deletions

19
cmd/goddit/main.go Normal file
View file

@ -0,0 +1,19 @@
package main
import (
"log"
"net/http"
"git.snrd.de/Spaenny/goddit/postgres"
"git.snrd.de/Spaenny/goddit/web"
)
func main() {
store, err := postgres.NewStore("postgres://postgres:secret@localhost/postgres?sslmode=disable")
if err != nil {
log.Fatal(err)
}
h := web.NewHandler(store)
http.ListenAndServe(":3000", h)
}