Skip to content

Instantly share code, notes, and snippets.

@brylor
Created August 18, 2014 13:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brylor/1f2c28b44b2d3818c755 to your computer and use it in GitHub Desktop.
Save brylor/1f2c28b44b2d3818c755 to your computer and use it in GitHub Desktop.
import os
from base import *
#ENVIRON = os.getenv("DJANGO_ENVIRONMENT")
ENVIRON = "develop"
if ENVIRON == "develop":
from develop import *
elif ENVIRON == "staging":
from staging import *
try:
from local import *
except ImportError:
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment