An open API service indexing awesome lists of open source software.

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.

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
```