Video demo here
it's a simple server to sync progress between E-Readers and Mobile devices. :)
# Get your server's IP address
ip a
# Clone the KoSync repository
git clone https://github.com/chaulagainrupak/kosync.git
cd demo
# (Optional) Use tmux to keep the service running after SSH exit
tmux
# Set up a virtual environment
python3 -m venv venv
source venv/bin/activate
# Install dependencies
pip install uvicorn
pip install -r requirements.txt
# Start the server (you can use any port)
uvicorn main:app --port 1234