-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env.test
43 lines (35 loc) · 1.44 KB
/
.env.test
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
# define your env variables for the test env here
###> symfony/framework-bundle ###
APP_ENV=test
APP_DEBUG=1
APP_SECRET=$ecretf0rt3st
###< symfony/framework-bundle ###
###> doctrine/doctrine-bundle ###
DATABASE_URL="postgresql://postgres:pass@db/docker?serverVersion=11&charset=utf8"
DATABASE_URL_TEST="postgresql://postgres:pass@db/docker_test?serverVersion=11.7&charset=utf8"
###< doctrine/doctrine-bundle ###
###> lexik/jwt-authentication-bundle ###
# Key paths should be relative to the project directory
JWT_PASSPHRASE=f6500706891b3ff9c2761e2d4f1327de
JWT_TOKEN_TTL=3600
###< lexik/jwt-authentication-bundle ###
NOTIFICATION_EMAIL_SENDER="[email protected]"
###> symfony/swiftmailer-bundle ###
MAILER_EMAIL="[email protected]"
MAILER_TRANSPORT=smtp
MAILER_ENCRYPTION=tls
MAILER_PORT=1025
MAILER_HOST=mail
MAILER_NAME="DITT"
MAILER_PASSWORD=""
###< symfony/swiftmailer-bundle ###
CLIENT_SPECIAL_APPROVALS_URL="http://localhost:8080/special-approvals"
CLIENT_NEW_PASSWORD_URL="http://localhost:8080/new-password/%s"
### Restricts usage of user's apiToken in header using IP filter (JSON array). Usage:
### * USER_API_TOKEN_IP_FILTER="" => access allowed for all IPs
### * USER_API_TOKEN_IP_FILTER=[] => access disallowed for all IPs
### * USER_API_TOKEN_IP_FILTER="[\"123.123.123.123\", \"124.124.124.124\"]" => access allowed for specified IPs
USER_API_TOKEN_IP_FILTER=""
# Feature flags
FF_NOTIFICATIONS_SICK_DAY_WORK_LOG_CREATED=1