# This file is a "template" of which env vars need to be defined for your application # Copy this file to .env file for development, create environment variables when deploying to production # https://symfony.com/doc/current/best_practices/configuration.html#infrastructure-related-configuration ###> symfony/framework-bundle ### APP_ENV=dev APP_SECRET=changethis #TRUSTED_PROXIES=127.0.0.1,127.0.0.2 #TRUSTED_HOSTS=localhost,example.com ###< symfony/framework-bundle ### ###> doctrine/doctrine-bundle ### # Format described at http://docs.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url # For an SQLite database, use: "sqlite:///%kernel.project_dir%/var/data.db" # Configure your db driver and server_version in config/packages/doctrine.yaml DATABASE_URL=mysql://db_user:db_password@127.0.0.1:3306/db_name ###< doctrine/doctrine-bundle ### ###> google/recaptcha ### RECAPTCHA_SITE_KEY=changethis RECAPTCHA_SECRET_KEY=changethis ###< google/recaptcha ### ###> minio/minio ### MINIO_ROOT_USER=changethis MINIO_ROOT_PASSWORD=changethis MINIO_ENDPOINT=http://localhost:9000 MINIO_PUBLIC_URL=http://localhost:9000 ###< minio/minio ### ###> symfony/mailer ### MAILER_DSN=smtp://localhost:1025 MAIL_DOMAIN=localhost ###< symfony/mailer ### ###> symfony/mercure-bundle ### # See https://symfony.com/doc/current/mercure.html#configuration # The URL of the Mercure hub, used by the app to publish updates (can be a local URL) MERCURE_URL=https://mine.local/.well-known/mercure # The public URL of the Mercure hub, used by the browser to connect MERCURE_PUBLIC_URL=https://mine.local/.well-known/mercure # The secret used to sign the JWTs MERCURE_JWT_SECRET="!ChangeThisMercureHubJWTSecretKey!" # Publisher JWT (must match publisher_jwt in your Caddyfile) MERCURE_JWT_TOKEN=changethis # Subscriber JWT sent to the browser so it can authenticate its EventSource connection MERCURE_SUBSCRIBER_JWT=changethis ###< symfony/mercure-bundle ### ###> web-auth/webauthn-framework ### WEBAUTHN_RP_ID=mine.local WEBAUTHN_ORIGIN=https://mine.local ###< web-auth/webauthn-framework ###