-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.go
83 lines (69 loc) · 948 Bytes
/
config.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
package blog
import "time"
// Config represents the main config
type Config struct {
Env string
Site struct {
BaseURL string
Title string
Params struct {
Author string
Description string
}
}
Navbar struct {
Items []*Item
}
Posts struct {
Dir string
}
Webhook struct {
Secret string
}
DB struct {
Path string
}
HTTP struct {
Addr string
}
SMTP struct {
Host string
Port int
Username string
Password string
}
Newsletter struct {
Limiter struct {
Interval time.Duration
}
BaseURL string
From string
Frequency int
Cron struct {
Spec string
}
Product struct {
Name string
}
HMAC struct {
Secret string
}
}
Sentry struct {
DSN string
}
AMQP struct {
URL string
}
Kafka struct {
Broker string
}
IP2Location struct {
Token string
}
}
// Item represents a navbar item
type Item struct {
Text string
URL string
}