-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env-example
55 lines (44 loc) · 876 Bytes
/
.env-example
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
# App
APP_NAME=
APP_URL=
APP_SCHEMA=
FORCE_SSL=
# JWT
ACCESS_TOKEN_SECRET=
REFRESH_TOKEN_SECRET=
# Encryption
ENCRYPTION_KEY=
# Prisma DB
DATABASE_URL="postgresql://masteruser:masterpassword@localhost:5555/masterdb?schema=public"
# MASTER DB
MASTER_DB_HOST=localhost
MASTER_DB_PORT=5555
MASTER_DB_USER=masteruser
MASTER_DB_PASS=masterpassword
MASTER_DB_NAME=masterdb
MASTER_DB_SCHEMA=public
# Mailhog
MAILHOG_PORT=8125
MAILHOG_MAIL_PORT=1026
# Mail Service
MAIL_DRIVER=
MAIL_HOST=
MAIL_PORT=
MAIL_USER=
MAIL_PASSWORD=
MAIL_ENCRYPTION=
MAIL_FROM_EMAIL=
MAIL_FROM_NAME=
# Redis - for queues
REDIS_HOST=localhost
REDIS_PORT=6479
REDIS_PASSWORD=redissecrettoken
# Public Folder
PUBLIC_FOLDER=public
MEILISEARCH_MASTER_KEY=meilisearchmasterkey
MEILISEARCH_PORT=7700
KAFKA_DROP_HOST=localhost
KAFKA_DROP_PORT=9000
KAFKA_HOST=localhost
KAFKA_PORT_1=2181
KAFKA_PORT_2=9092