Compare commits
44
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a5a895b67f | ||
|
|
28c663749c | ||
|
|
b063e17863 | ||
|
|
2008a379a8 | ||
|
|
c0fc0b8e6e | ||
|
|
928ab3cbfe | ||
|
|
4d021e7cf1 | ||
|
|
834f12c40f | ||
|
|
30aa73bf53 | ||
|
|
9d9de0fd0d | ||
|
|
979623b35e | ||
|
|
2984a6acb2 | ||
|
|
cdb469456f | ||
|
|
0ac2618f7d | ||
|
|
b6c09c267f | ||
|
|
229d55390d | ||
|
|
5eff66c24d | ||
|
|
7c86c919c7 | ||
|
|
cdd5bc3fd8 | ||
|
|
e69e794e27 | ||
|
|
173407cd26 | ||
|
|
90e5fd904f | ||
|
|
225c14124a | ||
|
|
a932161973 | ||
|
|
01b0522bd1 | ||
|
|
9c5b3fbe4e | ||
|
|
38d134bbac | ||
|
|
25664bbc4f | ||
|
|
4dfc8e7b15 | ||
|
|
bf7d1ee379 | ||
|
|
5188b6e697 | ||
|
|
812dc06988 | ||
|
|
376ed3f592 | ||
|
|
0543ed43b9 | ||
|
|
b486ca64d3 | ||
|
|
50b7300649 | ||
|
|
c9294d6df8 | ||
|
|
93f162b306 | ||
|
|
55a46a42b2 | ||
|
|
9cf04be857 | ||
|
|
654b4036b4 | ||
|
|
b58da74967 | ||
|
|
18821e2463 | ||
|
|
3b071eec9b |
@@ -1,73 +0,0 @@
|
|||||||
# 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"
|
|
||||||
DB_DRIVER=pdo_mysql
|
|
||||||
DB_SERVER_VERSION=8.0.32
|
|
||||||
DB_CHARSET=utf8mb4
|
|
||||||
DB_USER=escapepage
|
|
||||||
DB_PASSWORD="b.0nqrxJ/D*Luf9N"
|
|
||||||
DB_HOST=localhost
|
|
||||||
DB_PORT=3306
|
|
||||||
DB_NAME=escapepage
|
|
||||||
DATABASE_URL="${DB_DRIVER}://${DB_USER}:${DB_PASSWORD}@${DB_HOST}:${DB_PORT}/${DB_NAME}?serverVersion=${DB_SERVER_VERSION}&charset=${DB_CHARSET}"
|
|
||||||
###< 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=!ChangeThisMercureJWTSignedBySymfonySecretKey!
|
|
||||||
# CORS allowed origins (default)
|
|
||||||
MERCURE_CORS_ALLOWED_ORIGINS=http://localhost:8080
|
|
||||||
# Base URL for Mercure topics.
|
|
||||||
MERCURE_TOPIC_BASE=https://escapepage.dev
|
|
||||||
###< mercure ###
|
|
||||||
Reference in New Issue
Block a user