3 lines
135 B
Python
3 lines
135 B
Python
|
class Config:
|
||
|
app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///learn.db'
|
||
|
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
|