added MariaDB config
This commit is contained in:
parent
b3b867fe1a
commit
5339f4096d
|
@ -3,6 +3,11 @@ from flask import Flask
|
||||||
# Config Values
|
# Config Values
|
||||||
# location where file uploads will be stored
|
# location where file uploads will be stored
|
||||||
UPLOAD_FOLDER = './app/static/uploads'
|
UPLOAD_FOLDER = './app/static/uploads'
|
||||||
|
DB_HOST = '192.168.1.6' #'navanspi.duckdns.org'
|
||||||
|
DB_PORT = 3306
|
||||||
|
DB_USER = 'curieweb'
|
||||||
|
DB_PASSWORD = 'curie-web-russian-54'
|
||||||
|
DB_NAME = 'curie'
|
||||||
# needed for session security, the flash() method in this case stores the message
|
# needed for session security, the flash() method in this case stores the message
|
||||||
# in a session
|
# in a session
|
||||||
SECRET_KEY = 'Sup3r$3cretkey'
|
SECRET_KEY = 'Sup3r$3cretkey'
|
||||||
|
|
Loading…
Reference in New Issue