Skip to content
Snippets Groups Projects
Commit 985c1292 authored by Todd Dembrey's avatar Todd Dembrey
Browse files

Remove the run environment variable

parent e3196a4a
No related branches found
No related tags found
No related merge requests found
......@@ -10,9 +10,6 @@ env = os.environ.copy()
PROJECT_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
BASE_DIR = os.path.dirname(PROJECT_DIR)
# Run enviroment, can be set to development/test/production.
RUN_ENVIROMENT = 'development'
# Application definition
INSTALLED_APPS = [
......
......@@ -11,8 +11,6 @@ from .base import * # noqa
# Disable debug mode
DEBUG = False
RUN_ENVIROMENT = 'production'
# Cache everything for 10 minutes
# This only applies to pages that do not have a more specific cache-control
......
......@@ -7,7 +7,6 @@ from .base import * # noqa
# Instead, use environment variables or create a local.py file on the server.
DEBUG = True
# RUN_ENVIROMENT = 'test'
# Cache everything for 10 minutes
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment