User Tools

Site Tools


config:calibre

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
config:calibre [2021/02/14 02:36] Wulf Rajekconfig:calibre [2023/05/29 11:55] (current) – external edit 127.0.0.1
Line 80: Line 80:
  
 Make sure to use the same email address as your kobo account to authorize the Adobe ID. Make sure to use the same email address as your kobo account to authorize the Adobe ID.
 +
 +
 +====== Calibre-Web ======
 +
 +https://github.com/janeczku/calibre-web
 +
 +<code>
 +pip3 install APScheduler
 +pip3 install calibreweb
 +pip3 install advocate
 +pip3 install flask-limiter
 +</code>
 +
 +/usr/local/bin/cps
 +
 +    Launch web browser and write http://localhost:8083 
 +    Username: admin
 +    Password: admin123
 +
 +Service file for installation via pip
 +
 +If you want to get Calibre-Web started automatically after reboot follow this instructions. 
 +Create a file cps.service as root in the folder /etc/systemd/system with the following content:
 +
 +Replace the elements in {} like User, ExecStart and WorkingDirectory with your username and file- and foldernames.
 +
 +Find the location of the calibre-web starterfile cps, this should be something like /home/<user>/.local/bin/cps. 
 +Another option is using {path to correct pythoninstance} -m cps as starterfile. 
 +The correct python instance depends on how you installed calibre-web (e.g. virtual environment, system interpreter)
 +
 +<code>sudo vi /etc/systemd/system/cps.service</code>
 +<code>
 +[Unit]
 +Description=Calibre-Web
 +
 +[Service]
 +Type=simple
 +User=root
 +ExecStart=/home/USER/.local/bin/cps
 +   
 +[Install]
 +WantedBy=multi-user.target
 +</code>
 +
 +Enable the service
 +<code>
 +sudo systemctl enable cps.service
 +</code>
 +start the service
 +<code>
 +sudo systemctl start cps.service
 +</code>
 +
 +extras:
 +https://github.com/janeczku/calibre-web/wiki/Dependencies-in-Calibre-Web-Linux-Windows
 +
 +
 +Url for OPDS catalog:
 +http://localhost:8083/opds 
  
config/calibre.1613270204.txt.gz · Last modified: 2023/05/29 11:53 (external edit)