Skip to content
Snippets Groups Projects
Teemu Autto's avatar
Teemu Autto authored
c55e66e2
History

TJTS5901 Course Template Project

Project template for 2023 TJTS5901 Continuous Software Engineering -course.

To get started with the project, see week_1.md

The application is deployed at https://tjts5901-app.azurewebsites.net

Start the app

Repository provides an docker-compose file to start the app. Edit docker-compose.yml to uncomment the ports, and run:

docker-compose up --build tjts5901

App can be also started from Dockerfile, with flask debug turned on, and current folder in editable mode. It has the benefit of automatically reflecting code changes in the app.

docker build -t tjts5901 .
docker run -it -p 5001:5001 -e "FLASK_DEBUG=1" -v "${PWD}:/app" tjts5901

Please see the docs/tjts5901 folder for more complete documentation.

Reporting issues and bugs

To report bugs, please use the project "issues" form