-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.sample
More file actions
33 lines (28 loc) · 1.02 KB
/
.env.sample
File metadata and controls
33 lines (28 loc) · 1.02 KB
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
# ================================================================
# This is a sample environment file (.env.sample).
#
# IMPORTANT:
# - Do NOT use this file with real secrets for production.
# - Copy this file to '.env' and replace the placeholder values
# with actual secrets and environment-specific configurations.
#
# BEFORE DEPLOYMENT TO PRODUCTION:
# - Make sure to replace the placeholder values with real credentials.
# - Ensure that the real '.env' file is excluded from version control
# by keeping it listed in '.gitignore'.
#
# SECURITY WARNING:
# - Never commit real secrets like passwords or API keys to the repository!
# ================================================================
MYSQLDB_USER=root
MYSQLDB_ROOT_PASSWORD=123456
MYSQLDB_DATABASE=taskplanner_db
MYSQLDB_DOCKER_PORT=3306
DBADMIN_EXPOSE_PORT=8081
GATEWAY_EXPOSE_PORT=8080
JWT_SECRET=3cfa76ef14937c1c0ea519f8fc057a80fcd04a7420f8e8bcd0a7567c272e007b
JWT_EXPIRATION=3600000
RABBIT_USER=root
RABBIT_PASS=123456
MAIL_USER=example@gmail.com
MAIL_PASS=123456