Browse Source

Merge pull request #4 from WadeBarnes/master

EDIVORCE-64 - Use in-memory cookies for the DEV environment.
pull/160/head
Wade Barnes 7 years ago
committed by GitHub
parent
commit
475807d7c3
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions
  1. +1
    -0
      edivorce/settings/local.py
  2. +1
    -0
      edivorce/settings/openshift.py

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

@ -12,6 +12,7 @@ DATABASES = {
}
DEBUG = True
CSRF_COOKIE_AGE = None
TEMPLATES[0]["OPTIONS"]["debug"] = True
WEASYPRINT_URL = 'http://localhost:5005'


+ 1
- 0
edivorce/settings/openshift.py View File

@ -53,6 +53,7 @@ PROXY_BASE_URL = os.getenv('PROXY_BASE_URL', 'https://justice.gov.bc.ca')
if DEPLOYMENT_TYPE == 'dev':
PROXY_URL_PREFIX = os.getenv('PROXY_URL_PREFIX', '/divorce-dev')
DEBUG = True
CSRF_COOKIE_AGE = None
REGISTER_URL = 'https://www.test.bceid.ca/directories/bluepages/details.aspx?serviceID=5522'
if DEPLOYMENT_TYPE == 'test':


Loading…
Cancel
Save