Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anpandu/flask-backend-boilerplate
Boilerplate for building backend in flask.
https://github.com/anpandu/flask-backend-boilerplate
Last synced: about 2 months ago
JSON representation
Boilerplate for building backend in flask.
- Host: GitHub
- URL: https://github.com/anpandu/flask-backend-boilerplate
- Owner: anpandu
- Created: 2017-03-22T10:43:27.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2021-05-08T16:52:55.000Z (over 3 years ago)
- Last Synced: 2023-08-19T04:41:32.863Z (over 1 year ago)
- Language: Python
- Size: 14.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# flask-backend-boilerplate
Boilerplate for building backend in flask.
## Install dependencies
```sh
virtualenv .venv
source .venv/bin/activate
pip install -r requirements.txt
```## Run
```sh
python3.6 application.py
```## Run using docker
```sh
docker build . -t myapp
docker run -d myapp
```