config.go
624 Bytes
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
package domain
import (
"github.com/joho/godotenv"
"log"
"os"
)
type Config struct {
DatabaseUrl string
AppEnvironment string
Port string
}
func InitConfig() Config {
environment := os.Getenv("APP_ENVIRONMENT")
if environment == "" {
environment = "production"
}
if environment == "development" {
err := godotenv.Load()
if err != nil {
panic(err)
}
}
port := os.Getenv("PORT")
if port == "" {
port = "8000"
}
log.Printf("Environment: %s", environment)
return Config{
DatabaseUrl: os.Getenv("DATABASE_URL"),
AppEnvironment: environment,
Port: port,
}
}