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.
- Host: GitHub
- URL: https://github.com/peerchemist/falcon-docker-nginx
- Owner: peerchemist
- Created: 2022-01-11T21:10:34.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-01-11T21:11:31.000Z (over 4 years ago)
- Last Synced: 2025-04-12T03:55:05.371Z (about 1 year ago)
- Topics: boilerplate, docker, docker-compose, falcon, falcon-api, letsencrypt, nginx, python
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)
```