From b2009ebab901c8993bba25151c04ab70f76e10f9 Mon Sep 17 00:00:00 2001 From: Philip Molares Date: Wed, 3 Feb 2021 20:51:36 +0100 Subject: [PATCH] Dev Docs: Add .env.example file This file contains a minimal working config to get the backend up and running. Signed-off-by: Philip Molares --- .env.example | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 000000000..9500681fe --- /dev/null +++ b/.env.example @@ -0,0 +1,5 @@ +HD_DOMAIN="http://localhost" +HD_MEDIA_BACKEND="filesystem" +HD_MEDIA_BACKEND_FILESYSTEM_UPLOAD_PATH="upload/" +HD_DATABASE_DIALECT="sqlite" +HD_DATABASE_STORAGE="./hedgedoc.sqlite"