-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
44 lines (34 loc) · 1.44 KB
/
.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
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# #
# This file consists of environment variables that are used in the compose file #
# during development. #
# #
# Environment variables from this file are also referenced in the various #
# applications in this monorepo. #
# #
# By convention, all the environment variables in this file should be prefixed #
# by `__`. #
# #
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
#---------#
# MongoDB #
#---------#
__MONGODB_PORT=27017
__MONGODB_USERNAME="username"
__MONGODB_PASSWORD="password"
__MONGODB_DATABASE_NAME="nestradamus"
#-------#
# MinIO #
#-------#
__MINIO_API_PORT=9000
__MINIO_UI_PORT=9001
__MINIO_USERNAME="username"
__MINIO_PASSWORD="password"
__MINIO_BUCKET_NAME="nestradamus"
#---------#
# MailPit #
#---------#
__MAILPIT_SMTP_PORT=1025
__MAILPIT_WEB_UI_PORT=8025
__MAILPIT_SMTP_USERNAME="username"
__MAILPIT_SMTP_PASSWORD="password"