-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathconfig.json.example
36 lines (36 loc) · 1.06 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
{
"PORT": 3100,
"AUTH_USER": "admin",
"AUTH_PASSWORD": "password",
"MANDRILL_API_KEY": "1234567890",
"MONGODB_URL": "mongodb://localhost/habitrpg",
"TEST_MONGODB_URL":"mongodb://localhost/habitrpg-email-server-test",
"REDIS_PORT": 6379,
"REDIS_HOST": "127.0.0.1",
"BASE_URL": "https://habitica.com",
"STANDARD_REPLY_TO_ADDR": "[email protected]",
"ORGS_REPLY_TO_ADDR": "[email protected]",
"SESSION_SECRET_KEY": "aaaaa",
"SESSION_SECRET_IV": "aaaaa",
"AWS_ACCESS_KEY": "accesskey",
"AWS_SECRET_KEY": "secretKey",
"STRIPE_API_KEY": "stripe api key",
"BLACKLISTED_BASE_URLS": [],
"AMAZON_PAYMENTS_SELLER_ID": "",
"AMAZON_PAYMENTS_CLIENT_ID": "",
"AMAZON_PAYMENTS_MWS_KEY": "",
"AMAZON_PAYMENTS_MWS_SECRET": "",
"PAYPAL_MODE": "sandbox",
"PAYPAL_CLIENT_ID": "123456789",
"PAYPAL_CLIENT_SECRET": "123456789",
"S3":{
"bucket":"bucket",
"accessKeyId":"accessKeyId",
"secretAccessKey":"secretAccessKey"
},
"PUSH_CONFIGS": {
"GCM_SERVER_API_KEY": "",
"APN_ENABLED": "true",
"FCM_SERVER_API_KEY": ""
}
}