Francis is a smart(ish) little bot that will help you and your Ombi users to request media directly from Telegram!
Development is still underway: keep in mind that everything should work and that the feature set is far from complete!
Any bug report or contribution is very welcome!
As of now, the easiest way to deploy and use Francis is through this docker image.
For the most aventurous (or those who already have the required development tools installed), head to the Contributing section!
Once Francis is up and running, open your browser and hit http://localhost:4703/ to fill in the configuration.
For those deploying on a headless server, the WebUI listens on http://*:4703, so you'll be able to access it from your hostname or IP address.
Configuration and logs are stored in /config inside the container.
For users to be able to properly send requests, you must configure a user in Ombi (named "Francis") and you must grant him all the request-related roles.
You will also need some setup on your Ombi installation: in its settings, enable the Webhook notification with http://localhost:4703/webhook (or whatever hostname you have). If your Francis installation is already running, you can hit the Test button to receive a test message on your configured bot conversation.
docker create \
--name=francis \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Europe/London \
-p 4703:4703 \
-v <host config path>:/config \
--restart unless-stopped \
namaneo/francis
---
version: "2"
services:
francis:
image: namaneo/francis
container_name: francis
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/London
volumes:
- <host config path>:/config
ports:
- 4703:4703
restart: unless-stopped
The last step is to fill the Telegram and Ombi settings. Hit Save & Test, and if each result is green, Francis is ready to answer your messages!
You will need to install some software:
Once you have installed those, fork this repository, clone it, and open the solution. You should be good to go!
Big thanks to:
Under GPLv3 license.
Content type
Image
Digest
Size
84.4 MB
Last updated
over 4 years ago
docker pull namaneo/francis