From d2a73434ef6d4b0c759483a4853234f33ada15d3 Mon Sep 17 00:00:00 2001 From: Adrian Block Date: Mon, 19 Aug 2024 23:44:09 +0200 Subject: [PATCH] corrected database url in sample env to actual default value and added hint --- controller/.env.sample | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/controller/.env.sample b/controller/.env.sample index 1fa8178a..b5927f02 100644 --- a/controller/.env.sample +++ b/controller/.env.sample @@ -1,6 +1,8 @@ # Path to the repository THYMIS_REPO_PATH=/var/lib/thymis/repository -THYMIS_DATABASE_URL=sqlite:///var/lib/thymis/thymis.sqlite + +# Path to the database, see https://docs.sqlalchemy.org/en/20/core/engines.html#sqlite +THYMIS_DATABASE_URL=sqlite:////var/lib/thymis/thymis.sqlite # Base URL for the application THYMIS_BASE_URL=http://localhost:8000