-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
54 lines (45 loc) · 881 Bytes
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package handler
import (
"log"
"net/http"
"os"
"evanjon.es/app"
"evanjon.es/config"
"evanjon.es/contentful"
"evanjon.es/markdown"
"evanjon.es/rss"
)
type server interface {
Run() error
ServeHTTP(http.ResponseWriter, *http.Request)
}
func build() server {
c := contentful.Default(
markdown.Default(),
os.Getenv("SPACE_ID"),
os.Getenv("TOKEN"),
)
r := rss.Default(
"evanjon.es",
"My personal corner of the big WWW.",
"https://evanjon.es/",
"Evan M Jones",
)
cfg := config.Default(
os.Getenv("HOME_ID"),
os.Getenv("ABOUT_ID"),
)
return app.Default(c, r, cfg)
}
// This func is never used in production.
// Error checking ultimately doesn't matter here.
func main() {
if e := build().Run(); e != nil {
log.Fatal(e)
}
}
// For Zeit's Now 2.0.
func H(w http.ResponseWriter, r *http.Request) {
build().ServeHTTP(w, r)
}