File tree Expand file tree Collapse file tree 3 files changed +4
-13
lines changed Expand file tree Collapse file tree 3 files changed +4
-13
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,8 @@ def create_app():
1313 with app .app_context ():
1414 # Imports
1515 from . import routes
16- # Initialize Global db
16+
17+ # Create tables for our models
1718 db .create_all ()
1819
1920 return app
Original file line number Diff line number Diff line change @@ -9,16 +9,6 @@ class Config:
99 FLASK_APP = os .environ .get ('FLASK_APP' )
1010 FLASK_ENV = os .environ .get ('FLASK_ENV' )
1111
12- # Assets
13- LESS_BIN = os .environ .get ('LESS_BIN' )
14- ASSETS_DEBUG = os .environ .get ('ASSETS_DEBUG' )
15- LESS_RUN_IN_DEBUG = os .environ .get ('LESS_RUN_IN_DEBUG' )
16-
17- # Static Assets
18- STATIC_FOLDER = os .environ .get ('STATIC_FOLDER' )
19- TEMPLATES_FOLDER = os .environ .get ('TEMPLATES_FOLDER' )
20- COMPRESSOR_DEBUG = os .environ .get ('COMPRESSOR_DEBUG' )
21-
2212 # Database
2313 SQLALCHEMY_DATABASE_URI = os .environ .get ("SQLALCHEMY_DATABASE_URI" )
2414 SQLALCHEMY_TRACK_MODIFICATIONS = os .environ .get ("SQLALCHEMY_TRACK_MODIFICATIONS" )
Original file line number Diff line number Diff line change @@ -6,5 +6,5 @@ Jinja2==2.10
66MarkupSafe == 1.1.1
77psycopg2-binary == 2.7.7
88python-dotenv == 0.10.1
9- SQLAlchemy == 1.3.1
10- Werkzeug == 0.15.1
9+ SQLAlchemy == 1.3.2
10+ Werkzeug == 0.15.2
You can’t perform that action at this time.
0 commit comments