From 48cd0ed8abf0e84fc5d013a126e84c65ef0ed87a Mon Sep 17 00:00:00 2001 From: clarkzjw Date: Mon, 20 Feb 2023 01:17:46 -0800 Subject: ignore config.ini in .gitignore --- config.ini.example | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 config.ini.example (limited to 'config.ini.example') diff --git a/config.ini.example b/config.ini.example new file mode 100644 index 0000000..f803e56 --- /dev/null +++ b/config.ini.example @@ -0,0 +1,15 @@ +[DEFAULT] +BOT_TOKEN="" + +; [DEFAULT] +; ServerAliveInterval = 45 +; Compression = yes +; CompressionLevel = 9 +; ForwardX11 = yes + +; [forge.example] +; User = hg + +; [topsecret.server.example] +; Port = 50022 +; ForwardX11 = no -- cgit v1.2.3 From f7f99f41e768e6740adbf2ee708488b29fe6265a Mon Sep 17 00:00:00 2001 From: clarkzjw Date: Mon, 20 Feb 2023 13:47:26 -0800 Subject: implemented basic functions: - send a location from Telegram to bot - query a list (7) of POIs from Foursquare - send user inline keyboard button to choose a location - post toot status update to Mastodon with a link to OSM - store previously seen locations in local db --- config.ini.example | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) (limited to 'config.ini.example') diff --git a/config.ini.example b/config.ini.example index f803e56..4c29644 100644 --- a/config.ini.example +++ b/config.ini.example @@ -1,15 +1,9 @@ [DEFAULT] -BOT_TOKEN="" +BOT_TOKEN = +FOURSQUARE_API_KEY = -; [DEFAULT] -; ServerAliveInterval = 45 -; Compression = yes -; CompressionLevel = 9 -; ForwardX11 = yes - -; [forge.example] -; User = hg - -; [topsecret.server.example] -; Port = 50022 -; ForwardX11 = no +[TOOT] +CLIENT_ID = +CLIENT_SECRET = +API_BASE_URL = https://mastodon.social +ACCESS_TOKEN = -- cgit v1.2.3