-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathmain.go
59 lines (49 loc) · 1.15 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
56
57
58
59
package main
import (
"flag"
"log"
"os"
"os/signal"
"syscall"
s3simple "github.com/Riku32/s3-simple"
"github.com/Waifu-pics/waifu-api/api"
"github.com/Waifu-pics/waifu-api/api/router"
"github.com/Waifu-pics/waifu-api/cmd/admin"
"github.com/Waifu-pics/waifu-api/config"
"github.com/Waifu-pics/waifu-api/database"
_ "github.com/joho/godotenv/autoload"
)
func main() {
newuser := flag.Bool("newuser", false, "create an administrator")
flag.Parse()
conf := config.LoadConfig()
db := database.InitSQL(conf)
// Admin creation argument
if *newuser {
admin.CreateAdmin(db)
return
}
// Initiate S3
s3, err := s3simple.New(s3simple.Config{
Region: conf.Storage.Region,
Endpoint: conf.Storage.Endpoint,
Bucket: conf.Storage.Bucket,
Credentials: s3simple.Credentials{
Accesskey: conf.Storage.Accesskey,
Secretkey: conf.Storage.Secretkey,
},
})
if err != nil {
log.Fatalln("Unable to start S3")
}
options := api.Options{
Database: db,
Config: conf,
S3: s3,
}
router.New(options)
// Do not close program
sc := make(chan os.Signal, 1)
signal.Notify(sc, syscall.SIGINT, syscall.SIGTERM, os.Interrupt, os.Kill)
<-sc
}