Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/amoghmadan/python-starlette-rest-starter
Kick starter to your async REST application.
https://github.com/amoghmadan/python-starlette-rest-starter
python rest starlette uvicorn
Last synced: 19 days ago
JSON representation
Kick starter to your async REST application.
- Host: GitHub
- URL: https://github.com/amoghmadan/python-starlette-rest-starter
- Owner: amoghmadan
- License: mit
- Created: 2020-10-10T06:27:00.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-11-07T10:53:48.000Z (over 4 years ago)
- Last Synced: 2024-11-17T19:35:39.162Z (3 months ago)
- Topics: python, rest, starlette, uvicorn
- Language: Python
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Python-Starlette-REST-Starter (Python 3.6+)
Kick starter to your async REST application.## How to run in development?
```
cd src
python main.py
```## How to run in production?
Using gunicorn with uvicorn workers.
```
cd src
gunicorn main:app -w 4 -k uvicorn.workers.UvicornWorker -e ENV=production -b 0.0.0.0:8000
```