Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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.

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