-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy path.env
More file actions
86 lines (74 loc) · 3.37 KB
/
.env
File metadata and controls
86 lines (74 loc) · 3.37 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# 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=changeMeInDotEnvDotLocal
APP_URL="intercept.ddev.site"
TRUSTED_PROXIES=127.0.0.0/8,10.0.0.0/8,172.16.0.0/12,192.168.0.0/16
TRUSTED_HOSTS='intercept.ddev.site|stage.intercept.typo3.com|intercept.typo3.com|docs-hook.typo3.org'
###< 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"
# DATABASE_URL="mysql://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=10.11.2-MariaDB&charset=utf8mb4"
DATABASE_URL="sqlite:///%kernel.project_dir%/var/data.db"
###< doctrine/doctrine-bundle ###
# github acces token to handle pull requests
GITHUB_ACCESS_TOKEN="4711"
GITHUB_API_PASSWORD_TOKEN=""
GITHUB_HOOK_SECRET=""
GITHUB_CHANGELOG_TO_LOG_REPOSITORY="foobar-documentation/Changelog-To-Doc"
# Forge API token needed to create issues on forge
FORGE_ACCESS_TOKEN=""
# Forge endpoint url
FORGE_ENDPOINT="https://forge.typo3.org"
# Execute votes and pushes to gerrit
GERRIT_AUTHORIZATION="Basic 12345"
GERRIT_TOKEN="SomeToken"
# Home directory of user needed for git operations
GIT_HOME=""
# Path to private key needed to push patches to gerrit
GIT_SSH_PRIVATE_KEY=""
# Slack hook endpoint for core nightly build messages
SLACK_HOOK="https://hooks.slack.com/services/123/456/789"
# DN of user that executes the LDAP searches on ldap.typo3.org for login
# and his password. This needs to be set in a .env.local for authentication to work
LDAP_SEARCH_USER="uid=foo,dc=example,dc=com"
LDAP_SEARCH_PASSWORD="bar"
# Domain of documentation live server, used to link from intercept to documentation builds
# WITH trailing /
DOCS_LIVE_SERVER="https://docs.typo3.org/"
USERCENTRICS_ID="R9wBKTwzv"
# used for live re-rendering of all docs, see readme
# DOCS User
SSH_LIVE_USER=
# Web directory of docs server (/abs/path/to/Web without trailing slash)
SSH_LIVE_TARGET_DIR=
###> sentry/sentry-symfony ###
SENTRY_DSN=
SENTRY_ENVIRONMENT=
###< sentry/sentry-symfony ###
KEYCLOAK_CLIENT_ID=intercept-typo3-com
KEYCLOAK_CLIENT_SECRET=bla
KEYCLOAK_TOKEN_URI="realms/TYPO3/protocol/openid-connect/token"
KEYCLOAK_BASE_URI="https://login.typo3.com"
KEYCLOAK_REALM="TYPO3"
###> symfony/mailer ###
MAILER_DSN="smtp://localhost:1025"
###< symfony/mailer ###