Add application file
Browse files
app.py
CHANGED
@@ -1584,6 +1584,6 @@ def delete_video_from_playlist():
|
|
1584 |
if __name__ == '__main__':
|
1585 |
with app.app_context():
|
1586 |
db.create_all()
|
1587 |
-
Session = scoped_session(sessionmaker(bind=db.engine))
|
1588 |
-
app.run(debug=True, host="0.0.0.0"
|
1589 |
|
|
|
1584 |
if __name__ == '__main__':
|
1585 |
with app.app_context():
|
1586 |
db.create_all()
|
1587 |
+
# Session = scoped_session(sessionmaker(bind=db.engine))
|
1588 |
+
app.run(debug=True, host="0.0.0.0")
|
1589 |
|