-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.test
54 lines (42 loc) · 1.05 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
44
45
46
47
48
49
50
51
52
53
54
# NOTE: Informations on this file are merely illustrative and it does not
# represent any security issue since this is not a production ready application
NODE_ENV=test
# APP INFORMATION
APP_DOMAIN=locar.com
APP_NAME=Locar
# SERVER
SERVER_PORT=50000
SERVER_HOST=localhost
SERVER_PROTOCOL=http
SERVER_URL=${SERVER_PROTOCOL}://${SERVER_HOST}:${SERVER_PORT}
# AWS BUCKET INFORMATION
AWS_BUCKET_NAME=
AWS_BUCKET_REGION=
AWS_BUCKET_URL=
# AWS CREDENTIALS
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_REGION=
# STORAGE
STORAGE_DISK=local
# EMAIL
MAIL_PROVIDER=ethereal
# MEMORY DATABASE
MEM_DB=redis
MEM_DB_USER=loki
MEM_DB_PASS=valhalla
MEM_DB_HOST=localhost
MEM_DB_PORT=6379
# DATABASE
DB_TYPE=postgres
DB_VERSION=10-bullseye
DB_HOST=localhost
DB_PORT=5432
DB_CONTAINER_NAME=pg-locar-test
DB_USER=osiris
DB_PASS=disorder
DB_NAME=locar-test
PRISMA_PROTOCOL=postgresql
DATABASE_URL=${PRISMA_PROTOCOL}://${DB_USER}:${DB_PASS}@${DB_HOST}:${DB_PORT}/${DB_NAME}
DATABASE_URL_WITH_SCHEMA=${DATABASE_URL}?schema=public
RESET_PASSWORD_URL=${SERVER_URL}/password/reset?token=