Spring Boot course registration API. Allows for administrators to authenticate, and access all possible resoources.
# Must have all dependancies and java version 17
# in background
$ docker compose up dev-db -d
Don't forget to add all Maven dependencies in pom.xml
# Please use Swagger (Open API), this is the link to open in your browser
$ http://localhost:8080/swagger-ui/index.html#/
Even though Login generates and sends back token (which is generated properly),
if you use this token the application will not work. Token based authentication is yet
to be put in place. In addition, passwordsa are not hashed when stored in database,
for development purposes and to simplify it.