A simple tool to create beautiful photo calendars as PDF for self printing.
You could see it in action on k51.de
Create a docker-compose.yml
version: "3.9"
services:
calendaronline-nginx:
image: ghcr.io/dpmpc/calendaronline-nginx:latest
restart: always
ports:
- "8000:80"
depends_on:
- calendaronline
calendaronline:
image: ghcr.io/dpmpc/calendaronline:latest
restart: always
environment:
- CSRF_TRUSTED_ORIGINS=https://localhost:8000
- Python 3
- django 5.1
- Boostrap 5.3
- jQuery 3.7.1
- PyFPDF/fpdf2 2.8
- Pillow (PIL Fork) 11
- Cropper.js 1.6.2
- gunicorn 2.23
- NGINX 1.25
- Font Awesome 6.5
Start a developemnt envrionment by the following commands:
cd web
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
export DEBUG=1
python manage.py runserver