https://github.com/fabianferno/flask-rest-api-boilerplate
Flask - MySQL RestAPI lightweight boilerplate. Get started with Flask in just 1 minute. Sample routes and views included.
https://github.com/fabianferno/flask-rest-api-boilerplate
boilerplate flask mysql python restful-api starter-code
Last synced: about 2 months ago
JSON representation
Flask - MySQL RestAPI lightweight boilerplate. Get started with Flask in just 1 minute. Sample routes and views included.
- Host: GitHub
- URL: https://github.com/fabianferno/flask-rest-api-boilerplate
- Owner: fabianferno
- Created: 2021-02-20T15:33:58.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-12-21T10:33:21.000Z (over 1 year ago)
- Last Synced: 2023-12-21T13:28:13.656Z (over 1 year ago)
- Topics: boilerplate, flask, mysql, python, restful-api, starter-code
- Language: Python
- Homepage:
- Size: 25.4 KB
- Stars: 0
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# flask-rest-api-boilerplate
Flask Python Restful API - MySQL Boilerplate## Install dependencies
```cmd
pip install -r requirements.txt
```## Setup Environment Variables
- Create .env file at root
- Refer the .env.sample and setup environment variables in that file.## API Endpoints
- Write your APIs inside the routes directory
- Import the endpoints in app.py## Deploy your backend
```py
flask run
```