Skip to content

Commit 1378639

Browse files
committed
added settings.py
1 parent 1e4d34f commit 1378639

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

app.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@
77
from views import yoloapi
88
from OpenSSL import SSL
99

10+
1011
def create_app(settings_override=None):
11-
"""
12+
"""
1213
Method for creating and initializing application.
1314
1415
:param settings_override: Dictionary of settings to override.

settings.py

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
SQLALCHEMY_DATABASE_URI = 'sqlite:///db.sqlite'
2+
DEBUG = True

0 commit comments

Comments
 (0)