This project is a simple TODO List in php laravel framework. This includes MySQL, MongoDB and Laravel Framework. "laravel" folder is obtained from this project
$ sudo docker-compose up -dInstalls MySQL, php and Laravel Framework to docker.$ docker-compose build$ sudo docker exec -it todo_list_app bashConnects the docker.
$ composer installInstalls required package.$ chmod -R 777 storageGives privilege to access logs.$ php artisan key:generateGives a key ("base64:Nd/kXnzZfPRhQV+ELuKdOuFc4DzFH99WQfNK2gKRm10="). Open /MySQL DB/laravel/.env and assign "APP_KEY=" field to this key.$ php artisan migrate:refreshCreates the tasks table.
Now, you can access the website with localhost:80.