.env.dist.local Better Jun 2026

: Contains the baseline variables specifically for local development . This might include DISPLAY_ERRORS=true or XDEBUG_MODE=debug . 3. Documentation as Code

.env.dist.local is a simple text file that contains environment variables and their values. The .dist extension indicates that it's a distribution file, meant to be used as a template or a starting point. The .local extension suggests that it's specific to your local machine. .env.dist.local

DB_HOST=db DB_PORT=5432 DB_USER=myuser DB_PASSWORD=mypassword : Contains the baseline variables specifically for local

Example .gitlab-ci.yml :

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

Commit: 7f24f761_4bec77eb1b