Files
micro-service-api/@template/.env

29 lines
409 B
Bash
Raw Normal View History

2025-11-11 12:36:06 +07:00
#project
2025-11-17 08:59:59 +07:00
PJ_NAME=exthernal-template-api
2025-11-11 12:36:06 +07:00
# database
PG_HOST=localhost
PG_USER=postgres
2025-11-17 08:59:59 +07:00
PG_PASS=123456
PG_DB=ttc
2025-11-11 12:36:06 +07:00
PG_PORT=5432
2025-11-17 08:59:59 +07:00
# EMAIL
SMTP_USER=lalisakuty@gmail.com
SMTP_PASS=lurl pckw qugk tzob
# REDIS
REDIS_HOST=127.0.0.1
REDIS_PORT=6379
OTP_TTL_SECONDS=300
2025-11-11 12:36:06 +07:00
# JWT-TOKENS
2025-11-17 08:59:59 +07:00
JWT_SECRET=5b8273b2f79602e6b3987d3a9b018c66fd15e14848ff73ab1d332942c11eac80
2025-11-11 12:36:06 +07:00
# DEV_HINT
DEVHINT=true
DEVHINT_LEVEL=3
#PORT
2025-11-17 08:59:59 +07:00
PORT=1000