-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.env
160 lines (135 loc) · 4.16 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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
#
# 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
#
###> docker ###
NGINX_VERSION=1.27.3
NGINX_PORT=8080
NGINX_SSL_PORT=8443
PHP_VERSION=8.3
PHP_MEMORY_LIMIT=256M
MYSQL_VERSION=8.4.0
MYSQL_PORT=3306
MYSQL_DATA_DIR=./docker/db/data
RABBITMQ_CLIENT_PORT=5672
RABBITMQ_API_PORT=15672
MERCURE_VERSION=v0.17.1
MERCURE_SSL_PORT=6443
HIGHLIGHTJS_HOST=nodejs
HIGHLIGHTJS_PORT=3000
DOCKER_SUBNET=172.18.0.0/16
SMTP_RELAY_HOST=
###< docker ###
###> symfony/framework-bundle ###
APP_ENV=dev
APP_SECRET=918eaada7ce898fd9fa0817847896229
APP_TIMEZONE=UTC
APP_LOCALE=en
###< symfony/framework-bundle ###
## The hostname of the server. For example: `example.com`
APP_HOSTNAME=
## The enabled authentication methods, multiple can be set to true
APP_AUTH_PASSWORD=true
APP_AUTH_AZURE_AD=false
###> symfony/mailer ###
MAILER_DSN=smtp://mail:25
MAILER_SENDER=
###< symfony/mailer ###
###> symfony/http-client ###
HTTP_CLIENT_VERIFY_HOST=true
HTTP_CLIENT_VERIFY_PEER=true
###< symfony/http-client ###
###> doctrine/doctrine-bundle ###
# DATABASE_URL="mysql://db_user:[email protected]:3306/db_name?serverVersion=5.7&charset=utf8mb4"
DATABASE_URL=
###< doctrine/doctrine-bundle ###
###> symfony/messenger ###
RABBITMQ_USERNAME=
RABBITMQ_PASSWORD=
MESSENGER_TRANSPORT_DSN=amqp://${RABBITMQ_USERNAME}:${RABBITMQ_PASSWORD}@rabbitmq:5672/%2f/
###< symfony/messenger ###
###> thenetworg/oauth2-azure ###
OAUTH_AZURE_AD_TENANT_ID=
OAUTH_AZURE_AD_CLIENT_ID=
OAUTH_AZURE_AD_CLIENT_SECRET=
###< thenetworg/oauth2-azure ###
###> symfony/mercure-bundle ###
MERCURE_URL=https://my_mercure:${MERCURE_SSL_PORT}/.well-known/mercure
MERCURE_JWT_SECRET=
###< symfony/mercure-bundle ###
##############################################################################################################
# Application settings #
##############################################################################################################
##
# The application name used in the page title and menu bar.
#
APP_NAME=123view
##
# The absolute url of the project, to be able to create absolute urls in mail notifications. No ending slash.
#
APP_ABSOLUTE_URL=https://${APP_HOSTNAME}:${NGINX_SSL_PORT}
##
# Path to the git binary, default to globally available `git` command
#
# Example: GIT_BINARY=/usr/local/bin/git
GIT_BINARY=/usr/local/bin/git
##
# Email to send error mails to
#
# Example: [email protected]
ERROR_MAIL=
##
# The gitlab instance url, ending with slash
#
# Example: GITLAB_API_URL=https://gitlab.example.com/
GITLAB_API_URL=
##
# The gitlab api access token. Must have minimal `read_api` access
GITLAB_ACCESS_TOKEN=
##
# Sync comments to gitlab. Register application at:
# https://git.123dev.nl/oauth/applications
#
# Set callback url to: https://<your-123view-domain/app/user/gitlab-auth-finalize
GITLAB_COMMENT_SYNC=false
GITLAB_APPLICATION_ID=
GITLAB_APPLICATION_SECRET=
##
# The secret used when Gitlab calls 123view via a webhook
GITLAB_WEBHOOK_SECRET=
##
# Is it possible to freely add recipients to a rule or is it just restricted to the owner.
#
ALLOW_CUSTOM_RECIPIENTS_PER_RULE=true
##
# The regex pattern to match revisions together in the same code review
#
CODE_REVIEW_MATCHING_PATTERN=
CODE_REVIEW_MATCHING_GROUPS=
##
# Cache duration
#
CACHE_APP_LIFETIME=604800
CACHE_GITLAB_LIFETIME=3600
CACHE_REVISION_LIFETIME=604800
##
# comma separated list of email addresses of authors which their revision shouldn't be added to a code review
#
CODE_REVIEW_EXCLUDE_AUTHORS=
##
# The delay in milliseconds before a notification mail will be send to recipients
#
MAILER_NOTIFICATION_DELAY=600000
##
# Enable "open in editor" button for review files and code issues.
# IDE_URL_ENABLED=true
# IDE_URL_PATTERN=http://localhost:63342/api/file/?file=%f&line=%l
# IDE_URL_PATH_MAP=/app/>/
# IDE_URL_TITLE='Open file in PHPStorm'
#
# @see https://symfony.com/doc/current/reference/configuration/framework.html#ide
#
IDE_URL_ENABLED=false
IDE_URL_PATTERN=
IDE_URL_PATH_MAP=
IDE_URL_TITLE=