From 44f1b93e5e5b49e224ef349abe879faae4fd00e2 Mon Sep 17 00:00:00 2001 From: Mallory Hancock Date: Tue, 7 Nov 2017 12:50:57 -0800 Subject: [PATCH] add configuration variables for posting to social --- ttadmin/settings.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/ttadmin/settings.py b/ttadmin/settings.py index 205312b..b3c4091 100644 --- a/ttadmin/settings.py +++ b/ttadmin/settings.py @@ -103,3 +103,16 @@ STATIC_ROOT = 'static' MAILGUN_URL = "OVERWRITE THIS" MAILGUN_KEY = "OVERWRITE THIS" + +# Mastodon credentials +MASTO_CLIENT_ID = "OVERWRITE THIS" +MASTO_CLIENT_SECRET = "OVERWRITE THIS" +MASTO_ACCESS_TOKEN = "OVERWRITE THIS" +MASTO_BASE_URL = "https://tiny.tilde.website" + +# Twitter credentials +TWITTER_CONSUMER_KEY = "OVERWRITE THIS" +TWITTER_CONSUMER_SECRET = "OVERWRITE THIS" +TWITTER_TOKEN = "OVERWRITE THIS" +TWITTER_TOKEN_SECRET = "OVERWRITE THIS" +