docs: deploy

This commit is contained in:
decentral1se 2024-11-16 17:50:53 +01:00
parent e4227cc358
commit 3b69462164
No known key found for this signature in database
GPG Key ID: 03789458B3D0C410

View File

@ -5,3 +5,10 @@ Requires Python >= 3.11.x 👍
* install dependencies: `pip install -r requirements.txt` * install dependencies: `pip install -r requirements.txt`
* create static images folder: `mkdir -p ./static/images` * create static images folder: `mkdir -p ./static/images`
* launch the application: `python upload.py` * launch the application: `python upload.py`
# deploy
```
pip install gunicorn
gunicorn --bind 127.0.0.1:5000 upload:APP
```