From 3efdaf6243e4a03248e6163bf395f217d9eaf811 Mon Sep 17 00:00:00 2001 From: Enno Gelhaus Date: Thu, 30 Jan 2025 21:28:57 +0100 Subject: [PATCH] Change .env.example to an simpler Version. --- .env.example | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.env.example b/.env.example index c36c95fc..d1144f66 100644 --- a/.env.example +++ b/.env.example @@ -1,9 +1,11 @@ # Configuration reference: http://docs.postiz.com/configuration/reference -# === Required Settings +# === Required Settings DATABASE_URL="postgresql://postiz-user:postiz-password@localhost:5432/postiz-db-local" REDIS_URL="redis://localhost:6379" JWT_SECRET="random string for your JWT secret, make it long" + +# === This needs to be exactly the URL you're accessing Postiz on. FRONTEND_URL="http://localhost:4200" NEXT_PUBLIC_BACKEND_URL="http://localhost:3000" BACKEND_INTERNAL_URL="http://localhost:3000"