auth/.env.dist

19 lines
341 B
Plaintext
Raw Normal View History

2022-12-15 09:59:45 +00:00
# SERVICE
2022-12-16 15:46:14 +00:00
SERVICE_CONTAINER=v3-auth
SERVICE_URL=0.0.0.0
SERVICE_PORT=5002
2022-12-15 09:59:45 +00:00
# PRISMA
2022-12-16 15:46:14 +00:00
DATABASE_URL="postgresql://auth:auth@db:5432/auth?schema=public"
2022-12-15 09:59:45 +00:00
2022-12-22 13:31:46 +00:00
# RABBIT MQ
RMQ_URI=amqp://localhost:5672
2022-12-15 09:59:45 +00:00
# POSTGRES
2022-12-16 15:46:14 +00:00
POSTGRES_CONTAINER=v3-auth-db
2022-12-15 09:59:45 +00:00
POSTGRES_IMAGE=postgres:15.0
2022-12-16 15:46:14 +00:00
POSTGRES_DB=auth
POSTGRES_PASSWORD=auth
POSTGRES_USER=auth
2022-12-26 08:42:49 +00:00
POSTGRES_PORT=5502