https://github.com/carlosfernandezcabrero/flask-api-starter
Starter para generar una API con Flask y Python.
https://github.com/carlosfernandezcabrero/flask-api-starter
apirest flask python3 rest-api
Last synced: 2 months ago
JSON representation
Starter para generar una API con Flask y Python.
- Host: GitHub
- URL: https://github.com/carlosfernandezcabrero/flask-api-starter
- Owner: carlosfernandezcabrero
- Created: 2023-12-24T13:47:17.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-26T17:54:30.000Z (over 2 years ago)
- Last Synced: 2024-10-05T14:40:51.595Z (over 1 year ago)
- Topics: apirest, flask, python3, rest-api
- Language: Python
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flask API Starter
## Descripción
Starter para generar una API con Flask y Python.
## Setup
``` bash
python -m virtualenv venv
pip install -r requirements.txt
```
## Desarrollo
``` bash
python src/app.py
```
## Producción
``` bash
pip install waitress
waitress-serve --port 5000 --host 0.0.0.0 --call "app:create_app"
```