This repository is dedicated to providing a set of template files for quickly setting up a basic web application with the following Python libraries:
Simply, duplicate the branch, rename the directory, navigate to it, and amend the following files in the code editor of choice:
docker-compose.yaml
- change thecontainer_name
Dockerfile
- the Python version in thebuilder
pyproject.toml
- thename
,description
,version
, andauthors
.env
- update the variable values
Once done, run the following commands in the main directory:
# Creates poetry.lock file
poetry install
# Creates the docker image and runs the container
docker-compose up --build