-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
55 lines (44 loc) · 1.03 KB
/
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
55
package main
import (
"log"
"os"
"github.com/zhengkyl/review-ssh/server"
)
func main() {
tmdbKey, ok := os.LookupEnv("TMDB_API_KEY")
if !ok {
log.Fatal("TMDB_API_KEY missing")
}
server.RunServer(tmdbKey)
}
// func runLocal() {
// err := godotenv.Load()
// if err != nil {
// log.Fatal("Error loading .env file")
// }
// tmdbKey, ok := os.LookupEnv("TMDB_API_KEY")
// if !ok {
// log.Fatal("TMDB_API_KEY missing")
// }
// httpClient := retryablehttp.NewClient()
// httpClient.Logger = nil
// c := common.Props{
// Global: common.Global{
// AuthState: &common.AuthState{
// Authed: false,
// },
// Config: common.Config{
// TMDB_API_KEY: tmdbKey,
// },
// ReviewMap: map[int]common.Review{},
// FilmCache: common.Cache[common.Film]{},
// KeyMap: keymap.DefaultKeyMap(),
// HttpClient: httpClient,
// },
// }
// p := tea.NewProgram(ui.New(c), tea.WithAltScreen())
// if _, err := p.Run(); err != nil {
// fmt.Printf("L + R, Kyle fix your code: %v", err)
// os.Exit(1)
// }
// }