https://github.com/siruku6/py_web_docker_template
This reopository can be a template for web application repositories using python and docker
https://github.com/siruku6/py_web_docker_template
docker-compose flask pulp python3
Last synced: about 2 months ago
JSON representation
This reopository can be a template for web application repositories using python and docker
- Host: GitHub
- URL: https://github.com/siruku6/py_web_docker_template
- Owner: siruku6
- License: mit
- Created: 2023-05-04T10:13:25.000Z (about 3 years ago)
- Default Branch: develop
- Last Pushed: 2023-08-20T11:52:04.000Z (almost 3 years ago)
- Last Synced: 2025-03-08T23:47:01.953Z (over 1 year ago)
- Topics: docker-compose, flask, pulp, python3
- Language: Python
- Homepage:
- Size: 49.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# py_web_docker_template
This reopository can be a template for web application repositories using python and docker
## Initial setup
```bash
$ git clone https://github.com/siruku6/py_web_docker_template.git
$ cd py_web_docker_template
$ cp .env.sample .env
$ docker compose build
```
## Launch dev server
```bash
$ docker compose up
# 別のターミナルを立ち上げて以下を実行
$ curl localhost:5000/api
> hoge # 結果
```