Skip to content

Commit

Permalink
feat: updated app.env with correct db url
Browse files Browse the repository at this point in the history
  • Loading branch information
kemboi22 committed Aug 14, 2024
1 parent fe52330 commit dd5f7d9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ agent.write_envfile("database.env", db)
HOST = data.get('host')
REDIS_SERVER_HOST= data.get("REDIS_SERVER_HOST", "redis-app")
DATABASE_URL= data.get("DATABASE_URL", "postgres://affine:affine@postgres:5432/affine")
POSTGRES_URL = f"postgres://{POSTGRES_USER}:{POSTGRES_PASSWORD}@postgres:5432/{POSTGRES_DB}"
POSTGRES_URL = f"postgres://{POSTGRES_USER}:{POSTGRES_PASSWORD}@postgresql-app:5432/{POSTGRES_DB}"
NODE_ENV= data.get("NODE_ENV", "production")
AFFINE_ADMIN_EMAIL= data.get("AFFINE_ADMIN_EMAIL", "admin")
AFFINE_ADMIN_PASSWORD= data.get("AFFINE_ADMIN_PASSWORD", "admin1234")
Expand Down

0 comments on commit dd5f7d9

Please sign in to comment.