This is a web application using Spring, React and MySQL.
Steps to start the application with docker:
- navigate to project folder in the shell
- start the docker container with 'docker compose up'
- execute 'docker ps' and copy the ID of the database container
- open the database container's shell with 'docker exec -it "id of running container" bash'
- execute 'mysql -utest -p'
- type password: test
- execute 'use teacher_platform_db;'
- execute 'insert into roles values (1, 'ROLE_USER');'
- execute 'exit'