

##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`

http://localhost:8080/


php artisan tinker

$user = App\User::where('email', 'admin@gmail.com')->first();
$user->password = Hash::make('1234');
$user->save();



https://www.digitalocean.com/community/tutorials/how-to-secure-apache-with-let-s-encrypt-on-ubuntu-20-04
