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

https://github.com/peerchemist/falcon-docker-nginx

Boilerplate for creating a Falcon-based API, all neatly wrapped in docker and routed through nginx. It does https too.
https://github.com/peerchemist/falcon-docker-nginx

boilerplate docker docker-compose falcon falcon-api letsencrypt nginx python

Last synced: about 2 months ago
JSON representation

Boilerplate for creating a Falcon-based API, all neatly wrapped in docker and routed through nginx. It does https too.

Awesome Lists containing this project

README

          

# Falcon app quick start

This is a template for creating a Falcon-based API, all neatly wrapped in docker and routed through nginx.
It does SSL (https) too, just fill the blanks in *docker-compose.yml*.

```
.
├── Dockerfile (app dockerfile)
├── app (root dir of the Falcon app)
│ ├── __init__.py
│ ├── conf.py
│ ├── log.py
│ └── main.py
├── default.conf (example nginx conf)
├── docker-compose.yml (set https here)
└── requirements.txt (app dependencies)
```