
##Step -1
Down load the repo

Install Docker, docker-compose

Go to the main directory using a terminal and run
docker-compose up -d

## Step -2

Run the following in a terminal

#### docker exec -it grading-mysql sh

#### mysql -uroot -proot

inside mysql terminal run this
####ALTER USER 'jabir' IDENTIFIED WITH mysql_native_password BY 'jabir';
####grant all privileges on *.* to `jabir`

run the following in a new terminal

#### docker exec -it grading-php-fpm php composer.phar install

#### docker exec -it grading-php-fpm bin/console doctrine:migrations:migrate

Go back to mysql container/terminal and run the following for initial user

#### insert into user (name, username, password, is_active) values ('admin','admin','admin',1);
#### insert into user_role (name, role) values ('ROLE_SUPER_ADMIN','ROLE_SUPER_ADMIN'), ('ROLE_JUDGE', 'ROLE_JUDGE'), ('ROLE_ADMIN', 'ROLE_ADMIN');
#### insert into user_user_role (user_id, user_role_id) values (1,1);
Now you can exit the terminal and Open a web browser with following URL

http://localhost:5500/admin/dashboard
