8 lines
259 B
Python
8 lines
259 B
Python
|
import os
|
||
|
basedir = os.path.abspath(os.path.dirname(__file__))
|
||
|
|
||
|
class Config(object):
|
||
|
# ...
|
||
|
SQLALCHEMY_DATABASE_URI = os.environ.get('DATABASE_URL') or \
|
||
|
'sqlite:///' + os.path.join(basedir, 'app.db')
|
||
|
SQLALCHEMY_TRACK_MODIFICATIONS = False
|