64 lines
3.0 KiB
Bash
64 lines
3.0 KiB
Bash
# In all environments, the following files are loaded if they exist,
|
|
# the latter taking precedence over the former:
|
|
#
|
|
# * .env contains default values for the environment variables needed by the app
|
|
# * .env.local uncommitted file with local overrides
|
|
# * .env.$APP_ENV committed environment-specific defaults
|
|
# * .env.$APP_ENV.local uncommitted environment-specific overrides
|
|
#
|
|
# Real environment variables win over .env files.
|
|
#
|
|
# DO NOT DEFINE PRODUCTION SECRETS IN THIS FILE NOR IN ANY OTHER COMMITTED FILES.
|
|
# https://symfony.com/doc/current/configuration/secrets.html
|
|
#
|
|
# Run "composer dump-env prod" to compile .env files for production use (requires symfony/flex >=1.2).
|
|
# https://symfony.com/doc/current/best_practices.html#use-environment-variables-for-infrastructure-configuration
|
|
|
|
###> symfony/framework-bundle ###
|
|
APP_ENV=dev
|
|
APP_SECRET=
|
|
###< symfony/framework-bundle ###
|
|
|
|
###> doctrine/doctrine-bundle ###
|
|
# Format described at https://www.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url
|
|
# IMPORTANT: You MUST configure your server version, either here or in config/packages/doctrine.yaml
|
|
#
|
|
# DATABASE_URL="sqlite:///%kernel.project_dir%/var/data_%kernel.environment%.db"
|
|
# DATABASE_URL="mysql://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=8.0.32&charset=utf8mb4"
|
|
DATABASE_URL="mysql://escapepage:b.0nqrxJ%%2FD%%2ALuf9N@localhost:3306/escapepage?serverVersion=8.0.32&charset=utf8mb4"
|
|
###< doctrine/doctrine-bundle ###
|
|
|
|
###> symfony/messenger ###
|
|
# Choose one of the transports below
|
|
# MESSENGER_TRANSPORT_DSN=amqp://guest:guest@localhost:5672/%2f/messages
|
|
# MESSENGER_TRANSPORT_DSN=redis://localhost:6379/messages
|
|
MESSENGER_TRANSPORT_DSN=doctrine://default?auto_setup=0
|
|
###< symfony/messenger ###
|
|
|
|
###> symfony/mailer ###
|
|
# Development: use Mailpit (docker compose override provides service `mailer` on port 1025)
|
|
MAILER_DSN=smtp://mailer:1025
|
|
# Production/Stage (uncomment and set SENDGRID_API_KEY in real env or secrets):
|
|
# MAILER_DSN=sendgrid+api://%env(SENDGRID_API_KEY)%
|
|
# Alternatively, via SMTP (no extra package needed):
|
|
# MAILER_DSN="smtp://apikey:%env(SENDGRID_API_KEY)%@smtp.sendgrid.net:587?encryption=tls"
|
|
# Optional default sender (used by test command if --from not passed):
|
|
# MAILER_FROM=no-reply@your-domain.tld
|
|
# SENDGRID_API_KEY=your_real_key_goes_here # Do NOT commit this; set in .env.local or deployment env
|
|
###< symfony/mailer ###
|
|
|
|
###> symfony/sendgrid-mailer ###
|
|
# MAILER_DSN=sendgrid://KEY@default
|
|
###< symfony/sendgrid-mailer ###
|
|
|
|
###> mercure ###
|
|
# Internal hub URL used by the PHP app (reachable from the php container)
|
|
MERCURE_URL=http://mercure/.well-known/mercure
|
|
# Public hub URL used by browsers
|
|
MERCURE_PUBLIC_URL=http://localhost:8090/.well-known/mercure
|
|
# Shared secret for signing JWTs (dev only). In prod, set via real env/secrets.
|
|
MERCURE_JWT_SECRET=!ChangeThisMercureJWT!
|
|
# Base URL for Mercure topics. Use .dev in development; override to .com in prod via .env.prod or real env.
|
|
MERCURE_TOPIC_BASE=https://escapepage.dev
|
|
###< mercure ###
|