-
Put all the necessary variables into the
./backend/.env
file. -
Copy the
docusign_private.key
file to the./backend/storage/
directory. -
Build the images using the following command:
docker compose -f docker-compose-local.yml build
-
Start the containers using the following command. Add the
-d
flag to run the process in the background:docker compose -f docker-compose-local.yml up
-
Open a new terminal and set the application key by running the command:
docker exec -it myit_php php artisan key:generate
-
Install the database structure using these two commands:
docker exec -it myit_php php artisan migrate --seed docker exec -it myit_php php artisan passport:install
-
Clear the cache:
docker exec -it myit_php php artisan cache:clear
-
Open a browser to localhost.
By following these steps, you should be able to run the application locally.
Please note that these instructions assume you have Docker and Docker Compose installed and configured on your machine.