The Application is supposed to be a simple backend for a coworking space and provide simple functionalities for diffrent tasks using REST.
https://github.com/Laureatus/UeK-223_22-3216_LFa
You can run your application in dev mode that enables live coding using:
./mvnw quarkus:dev
This project uses Swagger. It can be accessed at: http://localhost:8080/q/swagger-ui/
Postgres can be accessed at: https://localhost:5050
The Testing Data is defined inside the resource folder in the file import.sql.
The Table structure is the following:
id | firstname | isAdmin | lastname | password | |
---|---|---|---|---|---|
1 | test@gmail.com | lorin | true | fankhauser | password123 |
2 | test2@gmail.com | Max | false | Mustermann | max123 |
id | bookeddate | halfday | wholeday | user_id |
---|---|---|---|---|
1 | 2019-01-21T05:47:08.644 | true | false | 1 |
2 | 2019-01-21T05:47:08.644 | false | true | 2 |
id | time | user_id |
---|---|---|
1 | 2019-01-21T05:47:08.644 | 1 |
id | name | supplier | user_id |
---|---|---|---|
1 | pizza | PizzaHut | 1 |
id | name | user_id |
---|---|---|
1 | usb type C charger_1 | 1 |