From 05e88e9d8db66608700f5f734b7c6428abcbe6e4 Mon Sep 17 00:00:00 2001 From: Michel Roegl-Brunner Date: Fri, 17 Oct 2025 09:32:08 +0200 Subject: [PATCH] docs: add DATABASE_URL to .env.example - Add DATABASE_URL example to .env.example for new installations - Ensures new users have the required Prisma database URL configured --- .env.example | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.env.example b/.env.example index 5871f87..0758124 100644 --- a/.env.example +++ b/.env.example @@ -25,4 +25,5 @@ AUTH_USERNAME= AUTH_PASSWORD_HASH= AUTH_ENABLED=false AUTH_SETUP_COMPLETED=false -JWT_SECRET= \ No newline at end of file +JWT_SECRET= +DATABASE_URL="file:./data/database.sqlite"