Problem with installation of wave
Hi there,
I could suggest using Sail as discussed here.
If you are on a Mac with an M1 chip, note that the MySQL image would not work. So in the docker-compose.yaml
file change the MySQL image to:
image: 'mariadb:10.5.8'
Then you can run Sail as normal:
composer install
Copy over the .env.example
file to .env
:
cp .env.example .env
The database details in your .env
file should be set to:
DB_CONNECTION=mysql
DB_HOST=mysql
DB_PORT=3306
DB_DATABASE=wave
DB_USERNAME=sail
DB_PASSWORD=password
Then start sail:
bash ./vendor/bin/sail up -d
Run the migrations:
./vendor/bin/sail artisan migrate
./vendor/bin/sail artisan db:seed
Let me know how it goes.
Best,
Bobby