Skip to content
Snippets Groups Projects

Acceptance

Merged Nico Vermaas requested to merge acceptance into release
4 files
+ 44
11
Compare changes
  • Side-by-side
  • Inline
Files
4
+ 6
6
@@ -9,12 +9,12 @@ CORS_ORIGIN_ALLOW_ALL = True
@@ -9,12 +9,12 @@ CORS_ORIGIN_ALLOW_ALL = True
DATABASES = {
DATABASES = {
'default': {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': os.environ['DATABASE_NAME'],
'USER': 'atdb_admin',
'HOST': os.environ['DATABASE_HOST'],
'PASSWORD': 'atdb123',
'PORT': os.environ['DATABASE_PORT'],
'NAME': 'atdb_ldv',
'USER': os.environ['DATABASE_USER'],
'HOST': 'localhost',
'PASSWORD': os.environ['DATABASE_PASSWORD'],
'PORT': '',
},
},
}
}
Loading