No description
Find a file
Steven Liu f62e836692 fix: createRecipe checks name is unique
Uses JPA Repository.exists(Example<T>); Changed no-arg constuctor of
Recipe to public.
2025-11-27 14:39:09 +01:00
.mvn/wrapper Initial commit 2025-11-13 22:26:09 +01:00
client fix even more tabs 2025-11-14 19:43:58 +01:00
commons fix: createRecipe checks name is unique 2025-11-27 14:39:09 +01:00
docs Revert "Merge branch 'backend' into 'main'" 2025-11-27 14:29:18 +01:00
server fix: createRecipe checks name is unique 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 init code of conduct file 2025-11-14 16:25:27 +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.