A Flask Hello World example
This application installs and runs with poetry.
If you don't have it, please follow Installation Guide.
You also can install it running the following command: python3 -m pip install poetry --user
poetry install
Copy environment variables from env.dist
.
cp env.dist .env
(If you came from v0.0.3 do it again to update Environment Variables)
Build docker image.
docker-compose build
Run the app using docker-compose
instead of docker
.
docker-compose up
The run the Flask Development server using poetry
poetry run flask run --host=0.0.0.0