-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
96 lines (82 loc) · 2.18 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
package main
import (
"log"
"os"
"strconv"
"github.com/MrBolas/SupervisorAPI/api"
"github.com/go-redis/redis/v8"
"github.com/joho/godotenv"
"gorm.io/driver/mysql"
"gorm.io/gorm"
)
const ENV_MYSQL_USERNAME = "MYSQL_USERNAME"
const ENV_MYSQL_PASSWORD = "MYSQL_PASSWORD"
const ENV_MYSQL_HOST = "MYSQL_HOSTNAME"
const ENV_MYSQL_PORT = "MYSQL_PORT"
const ENV_MYSQL_DB = "MYSQL_DATABASE"
const ENV_REDIS_HOST = "REDIS_HOST"
const ENV_REDIS_PORT = "REDIS_PORT"
const ENV_REDIS_DB = "REDIS_DB"
const ENV_REDIS_PASSWORD = "REDIS_PASSWORD"
func buildDSN() string {
mysqlUsername := os.Getenv(ENV_MYSQL_USERNAME)
if mysqlUsername == "" {
panic("missing env var: " + ENV_MYSQL_USERNAME)
}
mysqlPassword := os.Getenv(ENV_MYSQL_PASSWORD)
if mysqlPassword == "" {
panic("missing env var: " + ENV_MYSQL_PASSWORD)
}
mysqlHost := os.Getenv(ENV_MYSQL_HOST)
if mysqlHost == "" {
panic("missing env var: " + ENV_MYSQL_HOST)
}
mysqlPort := os.Getenv(ENV_MYSQL_PORT)
if mysqlPort == "" {
panic("missing env var: " + ENV_MYSQL_PORT)
}
mysqlDB := os.Getenv(ENV_MYSQL_DB)
if mysqlDB == "" {
panic("missing env var: " + ENV_MYSQL_DB)
}
return mysqlUsername + ":" + mysqlPassword + "@(" + mysqlHost + ":" + mysqlPort + ")/" + mysqlDB + "?charset=utf8mb4&parseTime=True&loc=Local"
}
func main() {
err := godotenv.Load()
if err != nil {
log.Println("Error loading .env file")
}
// database
db, err := gorm.Open(mysql.Open(buildDSN()), &gorm.Config{})
if err != nil {
log.Fatalf("unale to connect to database: %v", err)
}
redisHost := os.Getenv(ENV_REDIS_HOST)
if redisHost == "" {
panic("missing env var: " + ENV_REDIS_HOST)
}
redisPort := os.Getenv(ENV_REDIS_PORT)
if redisPort == "" {
panic("missing env var: " + ENV_REDIS_PORT)
}
redisDB := os.Getenv(ENV_REDIS_DB)
if redisDB == "" {
panic("missing env var: " + ENV_REDIS_DB)
}
dBNumber, err := strconv.Atoi(redisDB)
if err != nil {
panic("invalid Redis DB number: " + redisDB)
}
// Redis
rdb := redis.NewClient(&redis.Options{
Addr: redisHost + ":" + redisPort,
Password: "",
DB: dBNumber,
})
// Start API
a := api.New(db, rdb)
err = a.Start()
if err != nil {
log.Fatalf("unable to start echo: %v", err)
}
}