-
-
Notifications
You must be signed in to change notification settings - Fork 66
/
config.json.example
72 lines (70 loc) · 1.81 KB
/
config.json.example
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
{
"Environment": "production",
"ServerPort": 8080,
"Services": {
"RabbitMq": "amqp://user:pass@host:5672",
"SendGrid": {
"url": "https://api.sendgrid.com/v3/ ",
"TemplatesID": {
"FancyMail": "d-hash-id"
}
},
"OtherService": "https://dominio.com/"
},
"Secure": {
"JWTAccessSecure": "accesskeyyoumayneedtochangeit",
"JWTRefreshSecure": "refreshkeyyoumayneedtochangeit",
"JWTAccessTimeMinute": 10,
"JWTRefreshTimeHour": 10
},
"Endpoints": {
"SiteExample": "http://localhost:8084/"
},
"Tools": {
"WkhtmltopdfBin": "/opt/bin/wkhtmltopdf"
},
"Databases": {
"MongoDB": {
"URL": "mongodb://user:pass@host:27017",
"DatabaseLogs": "name_database"
},
"MySQL": {
"BoilerplateGo": {
"Read": {
"Hostname": "mysqldb",
"Name": "boilerplate_go",
"Username": "appuser",
"Password": "youShouldChangeThisPassword",
"Port": "3306",
"Parameter": "?parseTime=true"
},
"Write": {
"Hostname": "mysqldb",
"Name": "boilerplate_go",
"Username": "appuser",
"Password": "youShouldChangeThisPassword",
"Port": "3306",
"Parameter": "?parseTime=true"
}
},
"CompanyOp": {
"Read": {
"Hostname": "hostname_read",
"Name": "name_database",
"Username": "appuser",
"Password": "youShouldChangeThisPassword",
"Port": "3306",
"Parameter": "?parseTime=true"
},
"Write": {
"Hostname": "hostname_write",
"Name": "name_database",
"Username": "appuser",
"Password": "youShouldChangeThisPassword",
"Port": "3306",
"Parameter": "?parseTime=true"
}
}
}
}
}