For thoose newbies who suffering with repository installation
Opened this issue · 0 comments
Repository has poor installation guide. Here is more described instructions for Linux:
Install apache2 or nginx, setup them;
Load repository to the /var/www/html;
Navigate to project root, and run docker-compose build
to build the application docker image;
After the image has built successfully, start the app container & db container via running docker-compose up -d
;
Install php dependencies via composer install
. If you dont have installed composer - run sudo apt install composer
;
cp .env.example .env
to create the .env file;
Setup mysql-server and create database 'laravel' without password;
Run docker exec vuln-app php artisan migrate --seed
for create tables;
That's it. Now you should be able to access to this app successfully;