TUM Student project by "Die harmonischen LKWs".
Documentation can be found in the documentation folder. Project structure is documented along with uniform coding style.
Problem Statement
Frontend
Backend
Database
Code Style
- Generate JWT Keys: private.key and public.pub in backend/src/main/resources:
# In /backend/src/main/resources
# Leave passphrase empty
openssl genrsa -out private.key.pkcs1 4096
openssl rsa -in private.key.pkcs1 -pubout -outform PEM -out public.pub
openssl pkcs8 -topk8 -inform PEM -outform PEM -in private.key.pkcs1 -out private.key -nocrypt
rm private.key.pkcs1
- Insert API Key in [TODO]
- Setup database
- Run
gradle build