No description
Find a file
Oskar Rasieński 0050671944 Moved services
2026-01-08 01:04:05 +01:00
.mvn/wrapper Initial commit 2025-11-13 22:26:09 +01:00
client Merge branch 'client/incremental-websocket-modelling' into 'main' 2026-01-07 11:35:31 +01:00
commons created getters for Ingredient 2026-01-07 23:46:57 +01:00
docs minutes for meeting week 6 2025-12-19 21:37:15 +01:00
server Moved services 2026-01-08 01:04:05 +01:00
.gitignore chore: update gitignore - prevent accidentally committing client config 2025-12-20 01:07:31 +02:00
.gitlab-ci.yml Initial commit 2025-11-13 22:26:09 +01:00
checkstyle.xml feat: new rule to check javadoc comments 2025-12-07 21:17:33 +01:00
code-of-conduct.md docs: code of conduct v2 2025-11-27 22:55:07 +01:00
countlines.bat added personal line counting util 2025-11-27 16:08:36 +01:00
countlines.sh added personal line counting util 2025-11-27 16:08:36 +01:00
LICENSE.txt Initial commit 2025-11-13 22:26:09 +01:00
mvnw Initial commit 2025-11-13 22:26:09 +01:00
mvnw.cmd Initial commit 2025-11-13 22:26:09 +01:00
pom.xml Initial commit 2025-11-13 22:26:09 +01:00
README.md Initial commit 2025-11-13 22:26:09 +01:00
suppressions.xml fix: MagicNumber check disabled in tests 2025-12-07 21:17:02 +01:00

CSEP Template Project

This repository contains the template for the CSE project. Please extend this README.md with sufficient instructions that will illustrate for your TA and the course staff how they can run your project.

To run the template project from the command line, you either need to have Maven installed on your local system (mvn) or you need to use the Maven wrapper (mvnw). You can then execute

mvn -pl server -am spring-boot:run

to run the server and

mvn -pl client -am javafx:run

to run the client. Please note that the server needs to be running, before you can start the client.

Get the template project running from the command line first to ensure you have the required tools on your sytem.

Once it is working, you can try importing the project into your favorite IDE. Especially the client is a bit more tricky to set up there due to the dependency on a JavaFX SDK. To help you get started, you can find additional instructions in the corresponding README of the client project.