You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
640 B
21 lines
640 B
import os
|
|
|
|
class AppConfig:
|
|
# (FLASK) Sectret key wich will be used to secure some requests an connections
|
|
SECRET_KEY = 'IOT_SECRET_KEY'
|
|
TEMPLATE_FOLDER = 'templates'
|
|
STATIC_FOLDER = 'static'
|
|
STATIC_URL_PATH = '/'
|
|
|
|
# (SQLALCHEMY) COnfiguration
|
|
SQLALCHEMY_DATABASE_URI = 'sqlite:///./test.db'
|
|
SQLALCHEMY_TRACK_MODIFICATIONS = False
|
|
|
|
# (MAIL AGENT) Configure mail Server to send EMails.
|
|
MAIL_SERVER = 'smtp.googlemail.com'
|
|
MAIL_USERNAME = 'kerem.yollu@gmail.com'
|
|
MAIL_PASSWORD = 'eoilsjxjwmnfjbbj'
|
|
MAIL_PORT = 465
|
|
MAIL_USE_TLS = False
|
|
MAIL_USE_SSL = True
|