-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathconfig.example.json
83 lines (83 loc) · 1.66 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
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
{
"NODE_ENV": "development",
"secret": "secret",
"urls": {
"production": {
"server": "http://jobpigapp.herokuapp.com",
"client": "http://jobpigapp.com"
},
"development": {
"server": "http://localhost:3000",
"client": "http://localhost:3001"
},
"development": {
"server": "http://localhost:3000",
"client": "http://localhost:3001"
}
},
"ga_tracking_id":"ga_tracking_id",
"aws":{
"options":{
"accessKeyId":"accessKeyId",
"secretAccessKey":"secretAccessKey",
"region": "us-east-1"
},
"upload_options": {
"Bucket":"jobpigapp.com",
"ACL": "public-read"
}
},
"development": {
"username": "username",
"password": null,
"database": "database",
"host": "127.0.0.1",
"dialect": "postgres"
},
"test": {
"username": "username",
"password": null,
"database": "database_test",
"host": "127.0.0.1",
"dialect": "postgres"
},
"production": {
"username": "username",
"password": null,
"database": "database_production",
"host": "127.0.0.1",
"dialect": "postgres"
},
"stripe": {
"development": {
"public": "public",
"private": "private"
},
"production": {
"private": "private",
"public": "public"
}
},
"mail": {
"service": "Gmail",
"host": "smtp.gmail.com",
"port": 465,
"secure": true,
"auth": {
"user": "[email protected]",
"pass": "pass"
}
},
"newrelic": {
"license": "license",
"log_level": "info"
},
"linkedin": {
"key": "key"
"secret": "secret"
},
"facebook": {
"app_id": "app_id",
"secret": "secret"
}
}