-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated composer dependencies, extended environment configuration, do…
…cumentation, fixed rabbitmq volumes mapping issue.
- Loading branch information
DKravtsov
committed
Oct 31, 2024
1 parent
3377f1f
commit 9955a0b
Showing
32 changed files
with
2,573 additions
and
2,276 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,22 @@ | ||
# define your env variables for the prod env here | ||
MYSQL_ROOT_PASSWORD=secret | ||
|
||
RABBITMQ_ERLANG_COOKIE=7ead507151fc4461b9f45c1161384a04 | ||
RABBITMQ_USER=guest | ||
RABBITMQ_PASS=guest | ||
|
||
APP_ENV=prod | ||
APP_SECRET=42f011ec3a7bde0bec87364b1d967194 | ||
APP_DEBUG=0 | ||
|
||
###> doctrine/doctrine-bundle ### | ||
DATABASE_URL=mysql://root:secret@mysql:3306/symfony | ||
DATABASE_URL=mysql://root:${MYSQL_ROOT_PASSWORD}@mysql:3306/symfony | ||
###< doctrine/doctrine-bundle ### | ||
|
||
###> symfony/mailer ### | ||
MAILER_DSN=smtp://user:pass@smtp.example.com?encryption=tls | ||
###< symfony/mailer ### | ||
|
||
###> symfony/messenger ### | ||
MESSENGER_TRANSPORT_DSN=amqp://guest:guest@rabbitmq:5672/%2f/messages | ||
MESSENGER_TRANSPORT_DSN=amqp://${RABBITMQ_USER}:${RABBITMQ_PASS}@rabbitmq:5672/%2f/messages | ||
###< symfony/messenger ### |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,22 @@ | ||
# define your env variables for the staging env here | ||
MYSQL_ROOT_PASSWORD=secret | ||
|
||
RABBITMQ_ERLANG_COOKIE=7ead507151fc4461b9f45c1161384a04 | ||
RABBITMQ_USER=guest | ||
RABBITMQ_PASS=guest | ||
|
||
APP_ENV=staging | ||
APP_SECRET=42f011ec3a7bde0bec87364b1d967194 | ||
APP_DEBUG=0 | ||
|
||
###> doctrine/doctrine-bundle ### | ||
DATABASE_URL=mysql://root:secret@mysql:3306/symfony | ||
DATABASE_URL=mysql://root:${MYSQL_ROOT_PASSWORD}@mysql:3306/symfony | ||
###< doctrine/doctrine-bundle ### | ||
|
||
###> symfony/mailer ### | ||
MAILER_DSN=smtp://user:pass@smtp.example.com?encryption=tls | ||
###< symfony/mailer ### | ||
|
||
###> symfony/messenger ### | ||
MESSENGER_TRANSPORT_DSN=amqp://guest:guest@rabbitmq:5672/%2f/messages | ||
MESSENGER_TRANSPORT_DSN=amqp://${RABBITMQ_USER}:${RABBITMQ_PASS}@rabbitmq:5672/%2f/messages | ||
###< symfony/messenger ### |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.