From 488c8e1b32cc60b938942b2461ac2b2a48bda182 Mon Sep 17 00:00:00 2001 From: lauralani Date: Mon, 1 Jan 2024 17:51:33 +0100 Subject: [PATCH] add example config file --- config.example.py | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 config.example.py diff --git a/config.example.py b/config.example.py new file mode 100644 index 0000000..e445c6b --- /dev/null +++ b/config.example.py @@ -0,0 +1,26 @@ +config = { + "bot": { + + "token": "aslkjdasjldjsaldjasl", + "channels": [ + 12873281371823821328193, # laura lol, bot-test + 21302918421093801832 # LiLa Network Clubhaus, game-control + ], + "whitelist": [ + "username" + ] + + }, + "games": [ + { + "displayname": "Minecraft Vanilla Server", + "slug": "mc-v", + "systemd": "minecraft-vanilla01.service" + }, + { + "displayname": "Minecraft AllTheMods 8", + "slug": "mc-atm8", + "systemd": "minecraft-allthemods8.service" + } + ] +}