From 27c6b7d396c6041d3dc4d7b6561a970dbf7b5a22 Mon Sep 17 00:00:00 2001 From: Jeremy Zhang Date: Sun, 26 Mar 2017 02:30:16 -0700 Subject: [PATCH] Initial configuration example --- config.example.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 config.example.py diff --git a/config.example.py b/config.example.py new file mode 100644 index 0000000..012d2a3 --- /dev/null +++ b/config.example.py @@ -0,0 +1,13 @@ +config = { + # Create an app over here https://discordapp.com/developers/applications/me + # and fill these fields out + 'client-id': "Your app client id", + 'client-secret': "Your discord client secret", + 'bot-token': "Discord bot token", + + 'app-location': "/var/www/Titan/", + 'app-secret': "Type something random here, go wild.", + + 'database-uri': "driver://username:password@host:port/database", + 'app-base-url': "The base domain of the site", +}