Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Sumukh/simple-flask-api
A quick starting point for small API focused flask applications
https://github.com/Sumukh/simple-flask-api
Last synced: 3 months ago
JSON representation
A quick starting point for small API focused flask applications
- Host: GitHub
- URL: https://github.com/Sumukh/simple-flask-api
- Owner: Sumukh
- Created: 2019-06-21T07:47:18.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-04-29T21:49:46.000Z (over 3 years ago)
- Last Synced: 2024-05-28T04:11:01.246Z (6 months ago)
- Language: Python
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - Sumukh/simple-flask-api - A quick starting point for small API focused flask applications (Python)
README
# Simple Flask API
A quick starting point for small API only flask applications. This is intended for quick flask APIs that may not be developed much more.
# Setup
```
# Optional but recommended:
python3 -m venv env; source env/bin/activatepip install -r requirements.txt
./run-dev.sh
```# Production
```
pip install gunicorn
./run-production.sh
```## Limitations
* No tests
* No folder structure/blueprints for more complex APIs
* No DB integration to query / create records
* No schema / API versioning