From 864f09cee3c0e18d31396418f2a3af44e287b517 Mon Sep 17 00:00:00 2001 From: Emily J Date: Wed, 3 Mar 2021 17:01:55 +1100 Subject: [PATCH] new config example --- botconfig.json.example | 22 ++++++++++++++++++++++ botconfig.yml.example | 23 ----------------------- 2 files changed, 22 insertions(+), 23 deletions(-) create mode 100644 botconfig.json.example delete mode 100644 botconfig.yml.example diff --git a/botconfig.json.example b/botconfig.json.example new file mode 100644 index 0000000..69a25e4 --- /dev/null +++ b/botconfig.json.example @@ -0,0 +1,22 @@ +{ + "developmentMode": true, + + "token": "", + + "userAgent": "", + + "ownerIDs": [""], + + "keys": { + "sentry": "", + "weather": "" + }, + + "postgresOptions": { + "user": "", + "host": "", + "database": "", + "password": "", + "port": 0000 + } +} \ No newline at end of file diff --git a/botconfig.yml.example b/botconfig.yml.example deleted file mode 100644 index b1314db..0000000 --- a/botconfig.yml.example +++ /dev/null @@ -1,23 +0,0 @@ -developmentMode: true -token: '' -ownerIDs: - - '' - - '' - -keys: - sentry: '' - weather: '' - -postgresOptions: - user: '' - host: '' - database: '' - password: '' - port: - -lavalinkNodes: - node_1: - name: '' - host: '' - port: - auth: '' \ No newline at end of file