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

https://github.com/jod35/apiFlask-crash-course

This is code I wrote for the crash course on APIFlask
https://github.com/jod35/apiFlask-crash-course

Last synced: 7 months ago
JSON representation

This is code I wrote for the crash course on APIFlask

Awesome Lists containing this project

README

        

# APIFlask crash course
This is code I wrote for a crash course on [APIFlask](https://apiflask.com/).

## How to run project
- Clone repository with
```` git clone https://github.com/jod35/apiFlask-crash-course.git && cd apiFlask-crash-course````

- Install all requirements

````pip3 install -r requrements.txt````

- Set up your ```FLASK_ENV``` , ```FLASK_DEBUG``` , ``` FLASK_APP``` in a ```.flaskenv``` file

````
FLASK_ENV=development
FLASK_DEBUG=1
FLASK_APP=main.py
````

- Run ```db.py``` to create database
- Run app with ```flask run```