added MariaDB config

This commit is contained in:
Navan Chauhan 2020-07-06 18:55:30 +05:30
parent b3b867fe1a
commit 5339f4096d
1 changed files with 5 additions and 0 deletions

View File

@ -3,6 +3,11 @@ from flask import Flask
# Config Values
# location where file uploads will be stored
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
# in a session
SECRET_KEY = 'Sup3r$3cretkey'