.env.dist.local -

APP_NAME="My App (Local Dev)" APP_ENV=local APP_DEBUG=true APP_URL=http://localhost:8000 APP_TIMEZONE=UTC

: Add and commit this file so your team can see it. .env.dist.local

.env.dist.local is a . It keeps shared configuration clean while giving each developer a convenient way to document their local adjustments. When used correctly, it reduces “works on my machine” problems without introducing security risks. .env.dist.local

Define the required variables in .env.dist.local (or a similar template provided by the repo like .env.example ). .env.dist.local