-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun.py
More file actions
28 lines (24 loc) · 1.02 KB
/
run.py
File metadata and controls
28 lines (24 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# -----------------------------------------------------------------------------
# Copyright (c) 2025 Vikash Kumar
#
# This source code is the property of Vikash Kumar and may not be reproduced,
# distributed, or used without explicit permission.
#
# Author: Vikash Kumar
# GitHub: https://github.com/vikukumar
# LinkedIn: https://linkedin.com/in/vikash-edude
# -----------------------------------------------------------------------------
#from app import APP
from uvicorn import run
if __name__ == "__main__":
run('app:APP',host="0.0.0.0",port=5000,reload=True,workers=4,server_header=False)
# -----------------------------------------------------------------------------
# Copyright (c) 2025 Vikash Kumar
#
# This source code is the property of Vikash Kumar and may not be reproduced,
# distributed, or used without explicit permission.
#
# Author: Vikash Kumar
# GitHub: https://github.com/vikukumar
# LinkedIn: https://linkedin.com/in/vikash-edude
# -----------------------------------------------------------------------------