Skip to content
Snippets Groups Projects
Select Git revision
  • e90d77cbbdaa1318a7a4628abbf7ca219219bdc5
  • master default protected
  • allauth
3 results

ebooko

Ebooko

Ebook management software and synchronization to KoReader.

Supports EPUB and PDF.

Install

# Clone repo
git clone https://git.rb9.xyz/TheJoeCoder/ebooko
cd ebooko

# Create venv
python3 -m venv venv

# Activate (Linux/OSX)
. ./venv/bin/activate
# OR Activate (Windows)
.\venv\scripts\activate.ps1

# Install requirements
pip install -r requirements.txt

# Extra step - install libmagic
# Debian/Ubuntu
sudo apt-get install libmagic1
# Windows
pip install python-magic-bin
# OSX
brew install libmagic

# Migrate database
python3 manage.py migrate

# Run development server
python3 manage.py runserver

Credits