Requirements
Setup
- Clone the repository.
- Start the containers by running
docker-compose up -d
in the project root. - Install the composer packages by running
docker-compose exec laravel composer install
. - Access the Laravel instance on
http://localhost
(If there is a "Permission denied" error, rundocker-compose exec laravel chown -R www-data storage
). - Bundle the frontend by running
npm install && npm run dev
in thesrc
folder
Note that the changes you make to local files will be automatically reflected in the container.