-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfiguration.go
More file actions
24 lines (23 loc) · 838 Bytes
/
configuration.go
File metadata and controls
24 lines (23 loc) · 838 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
package wildlifenl
type Configuration struct {
Version string
Host string
Port int
RelationalDatabaseHost string
RelationalDatabasePort int
RelationalDatabaseName string
RelationalDatabaseUser string
RelationalDatabasePass string
RelationalDatabaseSSLmode string
TimeseriesDatabaseURL string
TimeseriesDatabaseOrganization string
TimeseriesDatabaseToken string
CacheSessionDurationMinutes int
CacheAuthRequestDurationMinutes int
EmailFrom string
EmailHost string
EmailUser string
EmailPassword string
AdminEmailAddress string
FirebaseCredentials []byte
}