Skip to content

Commit 30ea704

Browse files
committed
Comentd out test
1 parent b7316b9 commit 30ea704

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

webapp/vokou/settings/development.py

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,18 @@
1818
ALLOWED_HOSTS = []
1919

2020
DATABASES = {
21-
# 'default': {
22-
# 'ENGINE': 'django.db.backends.sqlite3',
23-
# 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
24-
# }
2521
'default': {
26-
'ENGINE': 'django.db.backends.postgresql',
27-
'NAME': os.environ.get('POSTGRES_NAME', 'postgres'),
28-
'USER': os.environ.get('POSTGRES_USER', 'postgres'),
29-
'PASSWORD': os.environ.get('POSTGRES_PASSWORD', 'postgres'),
30-
'HOST': os.environ.get('POSTGRES_HOST', 'localhost'),
31-
'PORT': 5432,
22+
'ENGINE': 'django.db.backends.sqlite3',
23+
'NAME': os.path.join(BASE_DIR, 'db-acc.sqlite3'),
3224
}
25+
# 'default': {
26+
# 'ENGINE': 'django.db.backends.postgresql',
27+
# 'NAME': os.environ.get('POSTGRES_NAME', 'postgres'),
28+
# 'USER': os.environ.get('POSTGRES_USER', 'postgres'),
29+
# 'PASSWORD': os.environ.get('POSTGRES_PASSWORD', 'postgres'),
30+
# 'HOST': os.environ.get('POSTGRES_HOST', 'localhost'),
31+
# 'PORT': 5432,
32+
# }
3333
}
3434

3535
# to improve performance on local dev machine
@@ -74,7 +74,8 @@
7474
'debug_toolbar.panels.profiling.ProfilingPanel',
7575
]
7676
}
77-
# MOLLIE_API_KEY = 'test_'
77+
78+
MOLLIE_API_KEY = 'test_mMpjV4xanRPNgvnC7JmPvM84Vz8WJ2'
7879

7980
if os.environ.get('RUN_MAIN'):
8081
import debugpy

0 commit comments

Comments
 (0)