user/.env.dist

19 lines
349 B
Plaintext
Raw Normal View History

2022-12-13 14:27:28 +00:00
# SERVICE
2022-12-15 16:14:50 +00:00
SERVICE_CONTAINER=v3-user
SERVICE_URL=0.0.0.0
SERVICE_PORT=5001
2022-12-13 14:27:28 +00:00
# PRISMA
2022-12-16 16:31:08 +00:00
DATABASE_URL="postgresql://user:user@v3-user-db:5432/user?schema=public"
2022-12-13 14:27:28 +00:00
2022-12-22 13:24:51 +00:00
# RABBIT MQ
RMQ_URI=amqp://localhost:5672
2022-12-13 14:27:28 +00:00
# POSTGRES
2022-12-15 16:14:50 +00:00
POSTGRES_CONTAINER=v3-user-db
2022-12-13 14:27:28 +00:00
POSTGRES_IMAGE=postgres:15.0
POSTGRES_DB=user
POSTGRES_PASSWORD=user
POSTGRES_USER=user
2022-12-26 08:45:20 +00:00
POSTGRES_PORT=5501