Update README.md
All checks were successful
Test web app / Check syntax (push) Successful in 8s
Test web app / Test server with Flask Dev Mode (push) Successful in 11s
Test web app / Test server with Gunicorn (WSGI) (push) Successful in 10s
Test web app / Test server with Hypercorn (ASGI) (push) Successful in 15s
Create Docker image (unstable) / deploy (push) Successful in 4m46s

This commit is contained in:
Mohammed Qureshi (Nova Cat) 2025-06-16 18:21:06 -07:00
parent 4eba6a9049
commit d11d63af6d

View file

@ -33,19 +33,19 @@ services:
#### Pip
```
pip install pyopenssl hypercorn flask
pip install pyopenssl hypercorn flask asgiref
```
#### Debian/Ubuntu
```bash
sudo apt install python3-hypercorn python3-flask python3-openssl
sudo apt install python3-hypercorn python3-flask python3-openssl python3-asgiref
```
#### Alpine
```bash
apk add py3-openssl py3-flask py3-pip
apk add py3-openssl py3-flask py3-asgiref py3-pip
# Alpine Linux doesn't have a hypercorn package
pip install --break-system-packages hypercorn