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

https://github.com/aseyed/flask-restapi


https://github.com/aseyed/flask-restapi

flask-application oop-programming rest-api

Last synced: 12 months ago
JSON representation

Awesome Lists containing this project

README

          

### Flask restAPI

#### To run execute these commands in terminal
```
> pipenv shell
> ./runserver.sh
#### What is in script?

> to Determine the app:
* export FLASK_APP=app.py
> to change the environment to developement:
* export FLASK_ENV=development
> to enable debug mode:
(if you ran the prev command this is not required.)
* export FLASK_DEBUG=1
> flask run --host HOST --port PORT
```