it's laravel project
- download and install php, composer and laravel by running:
/bin/bash -c "$(curl -fsSL https://php.new/install/linux)"add php to PATH - download the project by running
git clone https://github.com/Yourzo/semestralProjectVAII - go to project folder
- create copy of .env.example called .env by running
cp .env.example .env - install and build all npm dependencies with
npm install && npm run build - install all dependencies by running
composer install - build docker-compose and all needed with:
php artisan sail:install(choose mysql) - start docker
- (if on wsl ubuntu take these steps and restart the wsl)
- to run it on docker:
./vendor/bin/sail upyou can add-dlike with normal docker (first time run will take few minutes) - generate key by running
./vendor/bin/sail artisan key:generate - migrate by running:
./vendor/bin/sail artisan migrate - project should be running on
localhost