# 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=cf8f1911e2936c0d9a0912dd36982c7d2ac595bfefbc31b23021439081a159b2
APP_SHARE_DIR=var/share
###< symfony/framework-bundle ###

###> symfony/routing ###
# Configure how to generate URLs in non-HTTP contexts, such as CLI commands.
# See https://symfony.com/doc/current/routing.html#generating-urls-in-commands
DEFAULT_URI=http://localhost
###< symfony/routing ###

###> 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="mysql://root:@127.0.0.1:3306/starter?serverVersion=10.11.2-MariaDB&charset=utf8mb4"
#DATABASE_URL="mysql://root:@127.0.0.1:3306/starter?serverVersion=10.4.32-MariaDB&charset=utf8mb4"
DATABASE_URL="mysql://root:@127.0.0.1:3306/starter?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 ###
#MAILER_DSN=null://null
MAILER_DSN=smtp://freddie@webberdoo.com:Alltheway3008%23@mail.webberdoo.com:587?encryption=tls
APP_MAIL_FROM_ADDRESS=freddie@webberdoo.com
APP_MAIL_FROM_NAME="Webberdoo Starter 2.0"
APP_VERIFY_EMAIL_LIFETIME=3600
APP_REMEMBER_ME_LIFETIME=2592000
APP_VERIFICATION_RESEND_LIMIT=3
APP_VERIFICATION_RESEND_INTERVAL="15 minutes"
APP_PASSWORD_RESET_TTL=3600
APP_PASSWORD_RESET_ACCOUNT_THROTTLE=60
APP_PASSWORD_RESET_LIMIT=3
APP_PASSWORD_RESET_INTERVAL="15 minutes"
APP_EMAIL_CHANGE_TTL=3600
APP_EMAIL_CHANGE_LIMIT=3
APP_EMAIL_CHANGE_INTERVAL="15 minutes"
APP_EMAIL_CHANGE_RESEND_LIMIT=3
APP_EMAIL_CHANGE_RESEND_INTERVAL="15 minutes"
APP_API_ACCESS_TOKEN_TTL=900
APP_API_REFRESH_TOKEN_TTL=2592000
APP_API_LOGIN_LIMIT=5
APP_API_LOGIN_INTERVAL="15 minutes"
APP_API_REFRESH_LIMIT=20
APP_API_REFRESH_INTERVAL="15 minutes"
APP_SYNC_PUSH_LIMIT=60
APP_SYNC_PUSH_INTERVAL="1 minute"
APP_SYNC_PULL_LIMIT=120
APP_SYNC_PULL_INTERVAL="1 minute"
###< symfony/mailer ###

