forked from subsesjal/siiges-services
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
42 lines (35 loc) · 996 Bytes
/
.env.example
File metadata and controls
42 lines (35 loc) · 996 Bytes
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
# === MySQL Database Configuration ===
DB_USER_MYSQL=your_mysql_user
DB_PASSWORD_MYSQL=your_mysql_password
DB_PORT_MYSQL=5506
DB_HOST=localhost
DB_NAME_MYSQL=siiges_dev
DATABASE=mysql
# === PostgreSQL Database Configuration ===
DB_USER_POSTGRES=your_postgres_user
DB_PASSWORD_POSTGRES=your_postgres_password
DB_PORT_POSTGRES=5433
# === Server Configuration ===
SERVER_HOST=127.0.0.1
SERVER_PORT=3000
WHITE_LIST=localhost
NODE_ENV=development
# === API Keys ===
API_KEY=your_internal_api_key
EXTERNAL_API_KEY=your_external_api_key
# === Authentication Secrets ===
AUTH_JWT_SECRET=your_jwt_secret
AUTH_HMAC_SALT=your_hmac_salt
AUTH_HMAC_ALGORITHM=sha256
AUTH_JWT_ALGORITHM=RS256
AUTH_HASH_ALGORITHM=md5
EXPIRATION_TOKEN=1d
# === Email Service Configuration ===
SERVICE_EMAIL=gmail
USER_EMAIL=noreply@example.com
PASSWORD_EMAIL=your_email_app_password
# === URLs ===
API_BASE_URL=https://your-api-base-url.com
BASE_URL_FRONT=https://your-frontend-url.com
# === Mail Settings ===
TIME_MAIL=10