Skip to content

Instantly share code, notes, and snippets.

@juliedavila
Created March 22, 2015 16:53
Show Gist options
  • Save juliedavila/26ec2bb35c332887cc6a to your computer and use it in GitHub Desktop.
Save juliedavila/26ec2bb35c332887cc6a to your computer and use it in GitHub Desktop.
For blog interactive pres
# 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