From 94635e510b32f6c3f993f3c36b928fa6f4fa6e20 Mon Sep 17 00:00:00 2001 From: BurnyLlama Date: Mon, 1 Nov 2021 19:13:46 +0100 Subject: [PATCH] Clarified the dotenv-template... --- dotenv-template | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/dotenv-template b/dotenv-template index 5193393..140d847 100644 --- a/dotenv-template +++ b/dotenv-template @@ -1 +1,11 @@ -PORT = 12345 \ No newline at end of file +# The database connect string +MONGO_URI = "mongodb://user:passwd@host/db" + +# The port on which the server starts... +PORT = 12345 + +# Should the server try to generate the database? +GENERATE_DB = "false" + +# The API paginates. How many entries per page? +ENTRIES_PER_PAGE = 50 \ No newline at end of file