Update install.md

This commit is contained in:
Manh Lab
2021-04-07 04:05:20 -04:00
committed by GitHub
parent fda7245f7c
commit 9671a0e94c

View File

@@ -19,6 +19,9 @@ docker-compose up -d nginx mysql phpmyadmin workspace
# Enter the workspace
docker-compose exec workspace bash
chown $USER /var/run/docker.sock
sudo systemctl start docker
# Rename file env-example to .env
cp .env.example .env
@@ -31,6 +34,8 @@ php artisan key:generate
# Migrate database & seeders
php artisan migrate:fresh --seed
sudo php artisan cache:clear
# Run the worker
php artisan queue:work
```