mirror of
https://github.com/EDeev/web-dev.git
synced 2026-06-15 19:11:12 +03:00
9 lines
242 B
Python
9 lines
242 B
Python
import os
|
|
|
|
SECRET_KEY = 'secret-key'
|
|
|
|
SQLALCHEMY_DATABASE_URI = 'sqlite:///project.db'
|
|
SQLALCHEMY_TRACK_MODIFICATIONS = False
|
|
SQLALCHEMY_ECHO = True
|
|
|
|
UPLOAD_FOLDER = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'media', 'images')
|