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

ebooko

TheJoeCoder's avatar
c037ff71
History

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