- Copy the
.env.example
to.env
, then replace the following env vars
APP_NAME=YOUR_NEW_APP_NAME
DB_DATABASE=YOUR_FAVORITE_DATABASE_NAME
DB_USERNAME=YOUR_FAVORITE_USERNAME
DB_PASSWORD=YOUR_FAVORITE_PASS
- Access to the container
docker-compose exec -it $containerName bash
- Downloading the dependencies
composer install
- Configuring the application
composer run-script install-app
First you have to run this command
docker ps
It should return somenthing like this,
You can use the CONTAINER ID or the container's NAME
Sentry is a developer-first error tracking and performance monitoring platform. Errors are logged both from the frontend and backend. In order to get it up and running, you need to follow these steps:
- Create an account here
- Create a project within an organization
- Copy the DSN provided below "Configure SDK" and paste it in your
.env
'sSENTRY_LARAVEL_DSN
- You can test your configuration using
sail artisan sentry:test
The Laravel framework is open-sourced software licensed under the MIT license.