Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/prabin-acharya/runpod-flask-api
https://github.com/prabin-acharya/runpod-flask-api
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/prabin-acharya/runpod-flask-api
- Owner: prabin-acharya
- Created: 2024-05-05T18:12:55.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2024-05-05T19:10:44.000Z (9 months ago)
- Last Synced: 2024-05-06T19:27:47.896Z (9 months ago)
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# install caddy
```
curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/gpg.key' | gpg --dearmor -o /usr/share/keyrings/caddy-stable-archive-keyring.gpgcurl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/debian.deb.txt' | tee /etc/apt/sources.list.d/caddy-stable.list
apt update
```gunicorn app:app # runs flask api on port 8000
gunicorn -b 0.0.0.0:8000 app:appnohup gunicorn -b 0.0.0.0:8000 app:app &