website-PretendoNetwork/example.config.json

77 lines
1.6 KiB
JSON

{
"http": {
"port": 3000,
"base_url": "http://localhost:3000"
},
"github": {
"graphql_token": "ghp_..."
},
"discord": {
"roles": {
"supporter": "role_id",
"tester": "role_id"
},
"guild_id": "guild_id",
"client_id": "client_id",
"client_secret": "client_secret",
"bot_token": "bot_token"
},
"stripe": {
"goal_cents": 300000,
"secret_key": "secret_key",
"webhook_secret": "webhook_secret",
"notification_emails": []
},
"database": {
"account": {
"uri": "mongodb://127.0.0.1:27017",
"database": "database_name",
"connection_string": "mongodb://127.0.0.1:27017",
"options": {
"useNewUrlParser": true,
"useUnifiedTopology": true
}
}
},
"email": {
"ses": {
"region": "AWS SES us-east-1",
"key": "AWS SES access key",
"secret": "AWS SES secret key"
},
"from": "Firstname Lastname <user@domain.com>"
},
"trello": {
"api_key": "api_key",
"api_token": "api_token",
"board_name": "board_name"
},
"api_base": "https://api.domain.com",
"discourse": {
"sso": {
"secret": "Discourse SSO secret"
},
"api": {
"base_url": "https://discourse.example.com",
"username": "system",
"key": "Discourse API key"
},
"groups": {
"access_level": {
"1": "testers",
"2": "juxt-moderators",
"3": "developers"
},
"stripe_tier": {
"1": "supporters-mario",
"2": "supporters-super",
"3": "supporters-mega"
},
"discord_role": {
"1234567890123456789": "developers",
"9876543210987654321": "discord-moderators",
"1234567890987654321": "network-moderators"
}
}
}
}