Skip to content
This repository has been archived by the owner on May 24, 2024. It is now read-only.

Latest commit

 

History

History
30 lines (25 loc) · 639 Bytes

README.md

File metadata and controls

30 lines (25 loc) · 639 Bytes

How to initialize the project ?

The project run under Docker, you can easily setup all the projects by running these commands:

1. Copy the .env file

cp .env.example .env

2. Install the composer dependencies

docker run --rm \
  -u "$(id -u):$(id -g)" \
  -v "$(pwd):/var/www/html" \
  -w /var/www/html \
  laravelsail/php83-composer:latest \
  composer install --ignore-platform-reqs

3. Run the migrations

./vendor/bin/sail artisan migrate

4. Install and build the frontend

./vendor/bin/sail npm install
./vendor/bin/sail npm run dev

You're good to start!