Skip to content

Commit 1735df0

Browse files
committed
Created script and run configuration for dev environment
1 parent e1c597f commit 1735df0

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

.idea/runConfigurations/Socket_io.xml

Lines changed: 26 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/socketio_app/dev_server.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import uvicorn
2+
3+
if __name__ == "__main__":
4+
uvicorn.run("socketio_app:create_app", factory=True, host="0.0.0.0", port=8000, reload=True)

0 commit comments

Comments
 (0)