Created
March 22, 2015 16:53
-
-
Save juliedavila/26ec2bb35c332887cc6a to your computer and use it in GitHub Desktop.
For blog interactive pres
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (c) 2014, Matt Makai | |
# All rights reserved. | |
# Full License can be read here: http://bit.ly/1qBgqzn | |
import os | |
# General Flask app settings | |
DEBUG = os.environ.get('DEBUG', None) | |
SECRET_KEY = os.environ.get('SECRET_KEY', None) | |
# Redis connection | |
REDIS_SERVER = os.environ.get('REDIS_SERVER', None) | |
REDIS_PORT = os.environ.get('REDIS_PORT', None) | |
REDIS_DB = os.environ.get('REDIS_DB', None) | |
# Twilio API credentials | |
TWILIO_ACCOUNT_SID = os.environ.get('TWILIO_ACCOUNT_SID', None) | |
TWILIO_AUTH_TOKEN = os.environ.get('TWILIO_AUTH_TOKEN', None) | |
TWILIO_NUMBER = os.environ.get('TWILIO_NUMBER', None) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment