33 lines
626 B
Plaintext
33 lines
626 B
Plaintext
APP_NAME=Go.Gin.Template
|
|
IS_LOGGER=true
|
|
|
|
DB_HOST=postgres
|
|
DB_USER=postgres
|
|
DB_PASS=<your password>
|
|
DB_NAME=<your database name>
|
|
DB_PORT=5432
|
|
|
|
GOLANG_PORT=8888
|
|
APP_ENV=localhost
|
|
JWT_SECRET=<your secret key>
|
|
|
|
SMTP_HOST=smtp.gmail.com
|
|
SMTP_PORT=587
|
|
SMTP_SENDER_NAME="Go.Gin.Template <no-reply@testing.com>"
|
|
SMTP_AUTH_EMAIL=<your email>
|
|
SMTP_AUTH_PASSWORD=<your password>
|
|
|
|
# rabbitmq
|
|
RABBITMQ_HOST=rabbitmq
|
|
RABBITMQ_PORT=5672
|
|
RABBITMQ_USER=guest
|
|
RABBITMQ_PASSWORD=guest
|
|
RABBITMQ_MANAGEMENT_PORT=15672
|
|
RABBITMQ_LOG_QUEUE=log_queue
|
|
|
|
# redis
|
|
REDIS_HOST=redis
|
|
REDIS_PORT=6379
|
|
REDIS_PASSWORD=redis
|
|
REDIS_DB=0
|
|
REDIS_CACHE_TTL_MINUTES=60 |