From 4a7e0bf6144736378c1d891e105c362109e75d81 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Sat, 3 Jun 2023 19:57:58 +0300 Subject: [PATCH] separate config and example config --- .gitignore | 1 + example_config.json | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 example_config.json diff --git a/.gitignore b/.gitignore index 6c6f283..3617cc3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ # Ignore uploads directory uploads/ +config.json diff --git a/example_config.json b/example_config.json new file mode 100644 index 0000000..95b5586 --- /dev/null +++ b/example_config.json @@ -0,0 +1,6 @@ +{ + "username": "admin", + "password": "password", + "service_port": "8080", + "uploads_dir": "uploads/" +}