TicTacToe repository for Software Architecture and Design Patterns exercises.
- Name: Mouna Cheikho
- Student-ID (Matrikelnummer): 2276568
- S-Number: s240392
- Code is placed in the root repository path.
- Requirements, user documentation, ADRs, etc. are in markdown files in the
docs-directory
Run the tests:
mvn testRun the application locally:
mvn clean package
java -jar target/tictactoe-1.0.0.jarThe application is then available at http://localhost:8080.
Build the Docker image for the amd64 deployment target:
docker build --platform linux/amd64 -t tictactoe-sdi-2276568:latest .Run the Docker image:
docker run --rm -p 8080:8080 tictactoe-sdi-2276568:latest