No description
Find a file
Oskar Rasieński be82031c1e Merge branch 'feature/locale' into 'main'
feature/locale

See merge request cse1105/2025-2026/teams/csep-team-76!12
2025-12-04 14:43:33 +01:00
.mvn/wrapper Initial commit 2025-11-13 22:26:09 +01:00
client added @override to initializeComponents 2025-12-04 14:39:53 +01:00
commons fix: createRecipe checks name is unique 2025-11-27 14:39:09 +01:00
docs feedback w3 2025-11-29 12:26:39 +01:00
server test: improve unit test clarity 2025-11-27 14:39:09 +01:00
.gitignore Initial commit 2025-11-13 22:26:09 +01:00
.gitlab-ci.yml Initial commit 2025-11-13 22:26:09 +01:00
checkstyle.xml include try/catch in left-curly rule 2025-11-14 20:21:31 +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

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.