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
- Host: GitHub
- URL: https://github.com/jod35/apiFlask-crash-course
- Owner: jod35
- Created: 2022-07-03T06:55:19.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-03T07:05:44.000Z (almost 3 years ago)
- Last Synced: 2024-11-09T21:09:35.561Z (8 months ago)
- Language: Python
- Size: 1.95 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - jod35/apiFlask-crash-course - This is code I wrote for the crash course on APIFlask (Python)
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```