From 3f2f72a2783341311a4059207e0f5241a247cdc9 Mon Sep 17 00:00:00 2001 From: Elnu <9874955+ElnuDev@users.noreply.github.com> Date: Sun, 31 Jul 2022 15:25:03 -0700 Subject: [PATCH] Fix minor mistake in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 83110ed..34c1c69 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ Here, we have two sites, one hosted locally at port 3000 and one hosted locally For the first site, we specify that we want the SQLite database file to be stored in `databases/test.db`, and we want the name and email fields of each comment to be required to prevent anonymous comments. (Keep in mind that the JavaScript in [soudan.js](demo/soudan.js) assumes that these flags are not set, so you would need to manually add the `required` flag to the name and email `` fields respectively.) -For the second site, we can leave all the configuration fields as their defaults by giving an empty YAML object `{}`. If the database file path isn’t provided, it will default to the domain plus the `.db` extension, so in this case it will be `localhost:3000.db` in the current directory. Name and email are not required by default. +For the second site, we can leave all the configuration fields as their defaults by giving an empty YAML object `{}`. If the database file path isn’t provided, it will default to the domain plus the `.db` extension, so in this case it will be `localhost:5000.db` in the current directory. Name and email are not required by default. ## Moderation