From 2b403de286cfc86fb4b5e032b10760da0d9c48b6 Mon Sep 17 00:00:00 2001 From: kato Date: Sat, 21 Aug 2021 01:21:16 +0300 Subject: [PATCH] + Example Config File --- config.example.json | 34 ++++++++++++++++++++++++++++++++++ src/app.ts | 2 ++ 2 files changed, 36 insertions(+) create mode 100644 config.example.json diff --git a/config.example.json b/config.example.json new file mode 100644 index 0000000..c424251 --- /dev/null +++ b/config.example.json @@ -0,0 +1,34 @@ +{ + "options": { + "parallel_nodes": 2, + "parallel_node_tasks": 5 + }, + "smtp": { + "host": "", + "port": "", + "ssl": true, + "username": "", + "password": "", + "email_from": "" + }, + "nodes": [ + { + "name": "Main Connection", + "debug": 0, + "log": true, + "mail": { + "enabled": true, + "email_to": "", + "email_cc": "" + }, + + "hostname": "localhost", + "username": "root", + "password": "", + "databases": { + "blacklist": null, + "whitelist": null + } + } + ] +} \ No newline at end of file diff --git a/src/app.ts b/src/app.ts index 25ee048..eea0d27 100644 --- a/src/app.ts +++ b/src/app.ts @@ -5,4 +5,6 @@ */ async function main() { + + } \ No newline at end of file