From b1f97c37a44df65f25bd09dfd1a941cfb6678351 Mon Sep 17 00:00:00 2001 From: Ash Monty Date: Fri, 19 Aug 2022 21:01:20 +0200 Subject: [PATCH] chore: add missing props in example.config.json --- example.config.json | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/example.config.json b/example.config.json index 7ab9e03..5edbc24 100644 --- a/example.config.json +++ b/example.config.json @@ -1,16 +1,22 @@ { "http": { - "port": 80, - "base_url": "http://localhost:80" + "port": 3000, + "base_url": "http://localhost:3000" }, "discord": { "client_id": "client_id", "client_secret": "client_secret", - "bot_token": "token" + "guild_id": "408718485913468928", + "bot_token": "bot_token", + "tester_roles": [ + "419704440333926401", + "882247322933801030" + ] }, "stripe": { - "secret_key": "sk_secret", - "webhook_secret": "whsec_secret" + "goal_cents": 300000, + "secret_key": "secret_key", + "webhook_secret": "webhook_secret" }, "database": { "account": { @@ -23,10 +29,12 @@ } }, "gmail": { - "user": "email@gmail.com", - "pass": "app-password" + "user": "username", + "pass": "app-password", + "from": "User Name " }, "github": { "graphql_token": "graphql_token" - } + }, + "aes_key": "aes_key" }