Skip to content

Commit 4981b15

Browse files
committed
Add __main__.py to support containerization
1 parent 3f707dc commit 4981b15

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

backend/app/__main__.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
from backend.app import app, PORT
2+
3+
if __name__ == "__main__":
4+
app.run(host="0.0.0.0", port=PORT, debug=True)
5+

0 commit comments

Comments
 (0)