eneller 78e7052189 fix: Docker pandoc version
manual pandoc install in docker
2025-07-03 13:51:01 +02:00
2025-07-03 11:42:36 +02:00
2025-07-03 11:08:57 +02:00
2025-07-03 13:51:01 +02:00
2025-03-03 23:23:36 +01:00
2025-07-03 13:51:01 +02:00
2025-07-03 13:51:01 +02:00
2025-04-04 23:18:15 +00:00
2025-07-03 11:08:57 +02:00
2025-04-05 16:53:18 +02:00
2025-07-03 11:08:57 +02:00

epub2go-web

A simple Website to provide a NNI (Non-Nerd Interface) to epub2go.py, a web to epub converter.

Development

This project uses watchman for file watching and reloading. Follow the official instructions for your system to install, django will default to its standard watcher otherwise.

To run the server, install the dependencies described in pyproject.toml and uv.lock in a virtual environment, ideally using uv (or pip).

Celery is used as a task queue with redis as backend. A container for it is provided in the docker-compose.yml. After the container is up, simply start your Celery workers from src/ using

celery -A epub2go_web worker --loglevel=INFO

Finally, run the development server using

python manage.py runserver

Deployment

Follow the Development instructions, except replace the final command for the development server with

gunicorn -c gunicorn.py

Gunicorn does not serve static files and is intended to be deployed behind nginx. An example configuration is provided in nginx.conf.

To collect the static files for nginx, run

python manage.py collectstatic

and point nginx to the resulting folder.

Description
Languages
Python 60%
HTML 20.8%
CSS 9.3%
JavaScript 5.5%
Dockerfile 4.4%