Browse Source

changed production settings to mysql/mariadb database

master
Benni Baermann 4 years ago
parent
commit
c06ab48bde
2 changed files with 22 additions and 5 deletions
  1. +2
    -0
      README.md
  2. +20
    -5
      foerderbarometer/settings_production.py

+ 2
- 0
README.md View File

@ -24,6 +24,8 @@ edit /secrets.json to contain something similar to
"DATABASE_PASSWORD": "THIS IS TOP SECRET!" "DATABASE_PASSWORD": "THIS IS TOP SECRET!"
} }
python manage.py makemigrations
python manage.py migrate
python manage.py collectstatic python manage.py collectstatic
add to cron one time a day: add to cron one time a day:

+ 20
- 5
foerderbarometer/settings_production.py View File

@ -103,16 +103,31 @@ WSGI_APPLICATION = 'foerderbarometer.wsgi.application'
# Database # Database
# https://docs.djangoproject.com/en/3.1/ref/settings/#databases # https://docs.djangoproject.com/en/3.1/ref/settings/#databases
DATABASES = { DATABASES = {
'default': { 'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': BASE_DIR / 'db.sqlite3',
'PASSWORD': get_secret('DATABASE_PASSWORD')
'ENGINE': 'django.db.backends.mysql',
'NAME': 'fdb',
'USER': 'fdb',
'PASSWORD': get_secret(DATABASE_PASSWORD),
'HOST': '10.0.6.7', # Or an IP Address that your database is hosted on
# 'PORT': '3306',
#optional:
'OPTIONS': {
'charset' : 'utf8',
'use_unicode' : True,
'init_command': 'SET '
'storage_engine=INNODB,'
'character_set_connection=utf8,'
'collation_connection=utf8_bin'
#'sql_mode=STRICT_TRANS_TABLES,' # see note below
#'SESSION TRANSACTION ISOLATION LEVEL READ COMMITTED',
},
'TEST_CHARSET': 'utf8',
'TEST_COLLATION': 'utf8_general_ci',
} }
} }
# Password validation # Password validation
# https://docs.djangoproject.com/en/3.1/ref/settings/#auth-password-validators # https://docs.djangoproject.com/en/3.1/ref/settings/#auth-password-validators

Loading…
Cancel
Save