Initial commit (Clean history)

This commit is contained in:
anhduy-tech
2025-12-30 11:27:14 +07:00
commit ef48c93de0
19255 changed files with 3248867 additions and 0 deletions

11
rundev.sh Normal file
View File

@@ -0,0 +1,11 @@
python3 envdev.py
sudo kill -9 $(lsof -i:8000 -t) 2> /dev/null
gunicorn api.asgi:application \
-k uvicorn.workers.UvicornWorker \
-w 3 \
--worker-connections 2000 \
--max-requests 10000 \
--max-requests-jitter 1000 \
--timeout 1000 \
--log-level info \
-b 0.0.0.0:8000