Ajout d'un fichier de configuration local, non tracé par git

This commit is contained in:
Darks 2019-09-01 10:35:37 +02:00
parent 4868774b96
commit 0c7c408e40
Signed by: Darks
GPG Key ID: F61F10FA138E797C
3 changed files with 3 additions and 2 deletions

2
.gitignore vendored
View File

@ -22,6 +22,8 @@ uwsgi.ini
run.sh
# Update script to pull repository from SSH
update.sh
# Config to set up some server specific config
local_config.py
## Wiki

View File

@ -1,5 +1,5 @@
import os
from db_config import DB_NAME
from local_config import DB_NAME
class Config(object):
SECRET_KEY = os.environ.get('SECRET_KEY') or 'a-random-secret-key'

View File

@ -1 +0,0 @@
DB_NAME = "pcv5-dev"