-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig-example.json
55 lines (55 loc) · 1.32 KB
/
config-example.json
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
{
"DB_MAIN": {
"host": "localhost",
"port": "5432",
"name": "peatcms_main",
"user": "peatcms",
"pass": "blank",
"schema": "public"
},
"DB_HISTORY": {
"host": "localhost",
"port": "5432",
"name": "peatcms_history",
"user": "peatcms",
"pass": "blank",
"schema": "public"
},
"MAIL": {
"active": "mailchimp",
"mailchimp": {
"api_key": "your_api_key",
"api_url": "https://mandrillapp.com/api/1.0/"
},
"sendgrid": {
"api_key": "your_api_key",
"api_url": "https://api.sendgrid.com/v3/"
},
"mailgun": {
"api_key": "your_api_key",
"api_url": "https://api.eu.mailgun.net/v3/"
}
},
"integrations": {
"postcode": {
"api_url": "https://api.postcode.eu/nl/v1",
"api_key": "your_key",
"secret": "your_secret"
},
"pdfmaker": {
"api_key": "your_api_key",
"api_url": "https://chrome.browserless.io/pdf"
}
},
"newrelic_records_backend": false,
"max_memory_limit": "1g",
"VERBOSE": true,
"dbcache": "/path/to/writable/cache/",
"cdnpath": "/static/files/",
"cdnroot": "https://static.your_main_domain.tld/",
"logfile": "/path/to/writable/logs/bloembraaden_",
"uploads": "/path/to/writable/uploads/",
"invoice": "/path/to/writable/invoice/",
"version": "0.23.0",
"install": false
}