From 10a3f86f463f3130a7199244714934e0c310d6f8 Mon Sep 17 00:00:00 2001 From: Vegard Berg Date: Fri, 15 Sep 2023 08:16:02 +0200 Subject: [PATCH] Added example config --- .gitignore | 1 + config.example.toml | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 config.example.toml diff --git a/.gitignore b/.gitignore index ebe1988..c285ffc 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ bin +bin.exe *.db tmp tmp/* diff --git a/config.example.toml b/config.example.toml new file mode 100644 index 0000000..894c82a --- /dev/null +++ b/config.example.toml @@ -0,0 +1,12 @@ +host = "0.0.0.0" +port = 8080 +base_url = "http://localhost:8080" +debug = true + +[smtp] +enabled = false +# host = "smtp.example.com" +# port = 587 +# username = "username" +# password = "password" +# from = "John Smith " \ No newline at end of file