From bd0099aa29fabaee8bd1e19b25cd1703037f22a1 Mon Sep 17 00:00:00 2001 From: Kumi Date: Wed, 15 May 2024 14:33:35 +0200 Subject: [PATCH] feat(docker): Extended information on setting up Pantalaimon with Docker --- README.md | 5 +++-- contrib/pantalaimon.example.conf | 5 +++++ 2 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 contrib/pantalaimon.example.conf diff --git a/README.md b/README.md index ed3fb15..b7ed667 100644 --- a/README.md +++ b/README.md @@ -71,9 +71,10 @@ cp config.dist.ini config.ini sqlite3 database.db "SELECT 1" # Optionally, create Pantalaimon config -cp pantalaimon.example.conf pantalaimon.conf +cp contrib/pantalaimon.example.conf pantalaimon.conf # Edit the Pantalaimon config file to your needs -# Don't forget to update config.ini to point to your Pantalaimon instance +# Update your homeserver URL in the bot's config.ini to point to Pantalaimon (probably http://pantalaimon:8010 if you used the provided example config) +# You can use `fetch_access_token.py` to get an access token for the bot # Start the bot docker-compose up -d diff --git a/contrib/pantalaimon.example.conf b/contrib/pantalaimon.example.conf new file mode 100644 index 0000000..5cc48fd --- /dev/null +++ b/contrib/pantalaimon.example.conf @@ -0,0 +1,5 @@ +[Homeserver] +Homeserver = https://example.com +ListenAddress = localhost +ListenPort = 8010 +IgnoreVerification = True \ No newline at end of file