From 38e30034d1171203446438788683d8344d23755b Mon Sep 17 00:00:00 2001 From: Nicholas Staples Date: Tue, 9 Feb 2016 14:07:43 +0000 Subject: [PATCH] updated environment variables. --- config.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/config.py b/config.py index 6ec03eac7..17639d51f 100644 --- a/config.py +++ b/config.py @@ -30,22 +30,24 @@ class Development(Config): ADMIN_CLIENT_SECRET = 'dev-notify-secret-key' DELIVERY_CLIENT_USER_NAME = 'dev-notify-delivery' DELIVERY_CLIENT_SECRET = 'dev-notify-secret-key' + NOTIFICATION_QUEUE_PREFIX = 'notification_development' class Test(Development): SQLALCHEMY_DATABASE_URI = 'postgresql://localhost/test_notification_api' + NOTIFICATION_QUEUE_PREFIX = 'notification_test' class Preview(Config): - pass + NOTIFICATION_QUEUE_PREFIX = 'notification_preview' class Staging(Config): - pass + NOTIFICATION_QUEUE_PREFIX = 'notification_staging' class Live(Config): - pass + NOTIFICATION_QUEUE_PREFIX = 'notification_live' configs = {