From 67e76eb339051d9b0e9622d6a097ee4bb3fb386f Mon Sep 17 00:00:00 2001 From: Notoric Date: Sat, 1 Jun 2024 23:14:21 +0100 Subject: [PATCH] Create config.json template --- config.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 config.json diff --git a/config.json b/config.json new file mode 100644 index 0000000..b608547 --- /dev/null +++ b/config.json @@ -0,0 +1,20 @@ +{ + "mongo" : { + "host" : "localhost", + "port" : 27017, + "db" : "notoric-snc" + }, + "groq" : { + "api_key" : "" + }, + "weather" : { + "api_key" : "", + "city" : "London,uk" + }, + "news" : { + "api_key" : "", + "country" : "gb", + "article_lifetime": 6, + "article_interval": 1 + } +}