-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env
56 lines (52 loc) · 2.55 KB
/
.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# 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.
#
# 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=058faa48ce2169a6b21175278a836c30
###< symfony/framework-bundle ###
###> symfony/mailer ###
MAILER_DSN=smtp://mailhog:1025
###< symfony/mailer ###
###> 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.db"
DATABASE_URL=mysql://root:test@db:3306/test
#DATABASE_URL="postgresql://db_user:db_password@127.0.0.1:5432/db_name?serverVersion=13&charset=utf8"
###< doctrine/doctrine-bundle ###
REDIS_URL=redis://redis:6379
TRUSTED_PROXIES=127.0.0.1,REMOTE_ADDR
ROUTER_DEFAULT_URI=http://localhost:59001
MIN_IO_ACCESS_KEY=minio_access_key
MIN_IO_SECRET=minio_secret_key
MIN_IO_BUCKET_NAME=public
MIN_IO_ENDPOINT="http://minio:9000"
IMGPROXY_KEY="9f15b865f3aea54355b188c88c354d72b5c26c846a95de3825c6bd67556beefbe578a4d6491d4bd43af106ead4b59e659a57ae8e0cd3cf43cbab48ac7e695a2a"
IMGPROXY_SALT="d231ac4e362fbcfe4f9b636dbc8206ad207ac337cb9d1c85e2802ee50aba71263d5c0594d9af0da6f9cde79c77a5bef09fb7c7e00f496e5ce87f19ed40061237"
IMGPROXY_BASE_URL="http://localhost:59009"
###> 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=http://mercure/.well-known/mercure
# The public URL of the Mercure hub, used by the browser to connect
MERCURE_PUBLIC_URL=http://localhost:59007/.well-known/mercure
# The secret used to sign the JWTs
MERCURE_JWT_SECRET="!ChangeMe!"
###< symfony/mercure-bundle ###
###> sentry/sentry-symfony ###
SENTRY_DSN=""
RELEASE_VERSION=""
###< sentry/sentry-symfony ###