- Install Docker
- Clone the repo
- We are using Laravel Sail, First you need to install Laravel Sail by running
docker run --rm \
-u "$(id -u):$(id -g)" \
-v $(pwd):/var/www/html \
-w /var/www/html \
laravelsail/php84-composer:latest \
composer installcp .env.example .env
You can create an alias for
./vendor/bin/sailassail
We are using
8888port for web interface, feel free to change it as you want in .envAPP_PORTparameter
- Run
./vendor/bin/sail up - Run
./vendor/bin/sail artisan key:generate - Run
./vendor/bin/sail artisan migrate - Run
./vendor/bin/sail artisan db:seed - Run
./vendor/bin/sail npm install - Run
./vendor/bin/sail npm run dev - Open the browser and navigate to
http://localhost:8888
In production: we should always after deployment run php artisan storage:link
We need to create a 2 databases inside of postgres.
- IN pgsql -> n8n_database
- In pgsql_for_execution -> aidoublecheck