ctrlpanel/BUILDING.md
2021-06-09 20:11:04 +02:00

523 B

Building the development environment

cd into the project directory and run the following command: sudo sh bin/startdocker.sh This should start building the images and start the containers.

After that you need to go into the controlpanel_php container and run some commands:

Type docker exec -it controlpanel_php ash to go into the container and run the following commands:

composer install
cp .env.dev .env
php artisan key:generate --force
php artisan storage:link
php artisan migrate --seed --force