From 2c406c3a343df0e27a461d0d6c6688d9a2909972 Mon Sep 17 00:00:00 2001 From: Daniel Date: Mon, 11 Dec 2023 11:32:35 +0100 Subject: [PATCH] add example credentials --- .gitignore | 3 ++- credentials-example.json | 9 +++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 credentials-example.json diff --git a/.gitignore b/.gitignore index 78cd629..f541c4b 100644 --- a/.gitignore +++ b/.gitignore @@ -6,4 +6,5 @@ TestResults/ *.json *.zip *.egg-info -credentials* \ No newline at end of file +credentials* +!credentials-example.json \ No newline at end of file diff --git a/credentials-example.json b/credentials-example.json new file mode 100644 index 0000000..fa0f58b --- /dev/null +++ b/credentials-example.json @@ -0,0 +1,9 @@ +{ + "ADMIN_USER": "admin", + "ADMIN_PASS": "password", + "IMAP_EMAIL": "test@domain.com", + "IMAP_HOST": "mail.domain.com", + "IMAP_PORT": "993", + "IMAP_USER": "imap_user", + "IMAP_PASS": "password" +} \ No newline at end of file