From 42b7e7167283ca731c88bdfaa7ce39718b51b842 Mon Sep 17 00:00:00 2001 From: Chris Arderne Date: Thu, 16 Jul 2026 14:38:07 +0100 Subject: [PATCH] fix: .env.example file state DIRECT_URL without ref --- .env.example | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.env.example b/.env.example index 37ffa422062..f37a1a5194c 100644 --- a/.env.example +++ b/.env.example @@ -6,7 +6,7 @@ LOGIN_ORIGIN=http://localhost:3030 DATABASE_URL=postgresql://postgres:postgres@localhost:5432/postgres?schema=public # This sets the URL used for direct connections to the database and should only be needed in limited circumstances # See: https://www.prisma.io/docs/reference/api-reference/prisma-schema-reference#fields:~:text=the%20shadow%20database.-,directUrl,-No -DIRECT_URL=${DATABASE_URL} +DIRECT_URL=postgresql://postgres:postgres@localhost:5432/postgres?schema=public # Dedicated run-ops database (@internal/run-ops-database). Only needed to run prisma commands # against it or to enable the run-ops split; start it with `docker compose --profile runops up`. RUN_OPS_DATABASE_URL=postgresql://postgres:postgres@localhost:5434/postgres?schema=public @@ -166,4 +166,4 @@ POSTHOG_PROJECT_KEY= # Uncomment these to send metrics to the local Prometheus via OTEL Collector: # INTERNAL_OTEL_METRIC_EXPORTER_ENABLED=1 # INTERNAL_OTEL_METRIC_EXPORTER_URL=http://localhost:4318/v1/metrics -# INTERNAL_OTEL_METRIC_EXPORTER_INTERVAL_MS=15000 \ No newline at end of file +# INTERNAL_OTEL_METRIC_EXPORTER_INTERVAL_MS=15000