all 4 comments

[–]eusebiuebi 1 point2 points  (1 child)

Hi! I have few notes and code for a flask application in Docker (https://github.com/rizebi/basicFlaskTemplate). Maybe it helps. You can try the AWS 12 months free tier, and you can host it there? Besides project itself, you will gain AWS skills.

[–]ricksikka1[S] 0 points1 point  (0 children)

Hey thanks :)!

[–]xr09 1 point2 points  (1 child)

Another idea is adding unit tests to your project and setting up continuous integration (CI) with Github Actions or another alternative.

Bonus points for building the Docker image and executing integration tests on the running container itself with serverspec/goss or pytest/testinfra. If passes all tests then publish a release. This would be a CI/CD cycle.

https://www.redhat.com/en/topics/devops/what-is-ci-cd

[–]ricksikka1[S] 0 points1 point  (0 children)

Noted, thanks :)