Implemented basic models
This commit is contained in:
parent
6bceef1664
commit
3ba6099976
16 changed files with 257 additions and 24 deletions
|
|
@ -2,12 +2,9 @@ from flask import Flask
|
|||
from flask_sqlalchemy import SQLAlchemy
|
||||
|
||||
app = Flask(__name__)
|
||||
|
||||
# Configuration of application, see configuration.py, choose one and uncomment.
|
||||
# app.config.from_object('configuration.ProductionConfig')
|
||||
app.config.from_object("app.configuration.DevelopmentConfig")
|
||||
# app.config.from_object('configuration.TestingConfig')
|
||||
|
||||
db = SQLAlchemy(app) # flask-sqlalchemy
|
||||
|
||||
from app import views, models
|
||||
with app.app_context():
|
||||
db.create_all()
|
||||
Loading…
Add table
Add a link
Reference in a new issue