Browse Source

Fixed build (made FIXTURE_DIRS available on OpenShift config)

pull/160/head
Mike Olund 8 years ago
parent
commit
35169601a0
2 changed files with 4 additions and 4 deletions
  1. +4
    -0
      edivorce/settings/base.py
  2. +0
    -4
      edivorce/settings/local.py

+ 4
- 0
edivorce/settings/base.py View File

@ -113,3 +113,7 @@ STATICFILES_FINDERS = (
BCGOV_NETWORK = os.environ.get('PROXY_NETWORK', '0.0.0.0/0')
FORCE_SCRIPT_NAME = '/'
FIXTURE_DIRS = (
os.path.join(PROJECT_ROOT, 'edivorce', 'fixtures'),
)

+ 0
- 4
edivorce/settings/local.py View File

@ -19,7 +19,3 @@ WEASYPRINT_CSS_LOOPBACK = 'http://10.200.10.1:8000'
DEPLOYMENT_TYPE = 'localdev'
REGISTER_URL = '#'
FIXTURE_DIRS = FIXTURE_DIRS = (
os.path.join(PROJECT_ROOT, 'edivorce', 'fixtures'),
)

Loading…
Cancel
Save