Skip to content

Commit 5cad74f

Browse files
committed
nitpicking
1 parent 7fd1a81 commit 5cad74f

File tree

3 files changed

+4
-13
lines changed

3 files changed

+4
-13
lines changed

application/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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

config.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff 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")

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ Jinja2==2.10
66
MarkupSafe==1.1.1
77
psycopg2-binary==2.7.7
88
python-dotenv==0.10.1
9-
SQLAlchemy==1.3.1
10-
Werkzeug==0.15.1
9+
SQLAlchemy==1.3.2
10+
Werkzeug==0.15.2

0 commit comments

Comments
 (0)