Private
Public Access
1
0

removing future

This commit is contained in:
Sander Roosendaal
2022-02-15 08:23:48 +01:00
parent 8af7ac8af4
commit 221953bfdf
54 changed files with 83 additions and 283 deletions

View File

@@ -27,19 +27,20 @@ if TESTING or use_sqlite:
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
'HOST': 'localhost',
'PASSWORD': 'roeidata',
'USER': '',
'PASSWORD': 'roeidata',
'PORT': '3306', },
# 'TEST': {
# 'CHARSET': 'utf8',
# 'COLLATION': 'utf8_general_ci',
# 'CHARSET': 'utf8',
# 'COLLATION': 'utf8_general_ci',
# },
# 'slave': {
# 'ENGINE': 'django.db.backends.mysql',
# 'ENGINE': 'django.db.backends.mysql',
# 'NAME': 'rowsanda_107501',
# 'USER': 'rowsanda_107501',
# 'USER': 'rowsanda_107501',
# }
# }
}
@@ -82,7 +83,7 @@ STATIC_ROOT = BASE_DIR
#STATIC_ROOT = os.path.join(BASE_DIR, 'static')
STATICFILES_DIRS = [os.path.join(BASE_DIR, 'static'),
os.path.join(BASE_DIR, 'static/plots'),]
os.path.join(BASE_DIR, 'static/plots'),]
INTERNAL_IPS = ['127.0.0.1']