website-PretendoNetwork/example.config.json

51 lines
1,019 B
JSON
Raw Permalink Normal View History

2020-05-12 15:46:35 -04:00
{
"http": {
"port": 3000,
"base_url": "http://localhost:3000"
2021-04-19 16:21:50 -04:00
},
2022-10-01 13:04:24 -04:00
"github": {
"graphql_token": "ghp_..."
},
"discord": {
2022-10-01 13:04:24 -04:00
"roles": {
"supporter": "role_id",
"tester": "role_id"
},
"guild_id": "guild_id",
"client_id": "client_id",
2021-11-20 17:41:17 -05:00
"client_secret": "client_secret",
2022-10-01 13:04:24 -04:00
"bot_token": "bot_token"
2021-12-12 20:48:20 -05:00
},
2022-06-19 20:30:51 -04:00
"stripe": {
"goal_cents": 300000,
"secret_key": "secret_key",
"webhook_secret": "webhook_secret",
"notification_emails": []
2022-06-19 20:30:51 -04:00
},
"database": {
"account": {
"uri": "mongodb://127.0.0.1:27017",
2022-10-01 13:04:24 -04:00
"database": "database_name",
2023-04-11 05:44:21 -04:00
"connection_string": "mongodb://127.0.0.1:27017",
2022-06-19 20:30:51 -04:00
"options": {
"useNewUrlParser": true,
"useUnifiedTopology": true
}
}
},
2024-02-20 13:49:27 -05:00
"email": {
"ses": {
"region": "AWS SES us-east-1",
"key": "AWS SES access key",
"secret": "AWS SES secret key"
},
2022-10-01 13:04:24 -04:00
"from": "Firstname Lastname <user@domain.com>"
2022-08-16 09:47:37 -04:00
},
2022-10-01 13:04:24 -04:00
"trello": {
"api_key": "api_key",
"api_token": "api_token",
"board_name": "board_name"
},
2022-10-01 13:04:24 -04:00
"api_base": "https://api.domain.com"
}