Skip to content

Latest commit

 

History

History
59 lines (50 loc) · 1.94 KB

File metadata and controls

59 lines (50 loc) · 1.94 KB

pdfcalendar

A simple tool to create beautiful photo calendars as PDF files for self-printing.

You can see it in action at k51.de.

Deploy with docker compose

Create a docker-compose.yml

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

Used libraries

Used fonts

  • Font Awesome 6.5
  • Monsieur La Doulaise - Copyright 2011 Alejandro Paul
  • Noto Sans Display - Copyright 2012 Google Inc.
  • Pacifico - Copyright 2018 The Pacifico Project Authors
  • Purisa - Copyright 2003, 2004 Poonlap Veerathanabutr
  • Sawasdee - Copyright 2007 Pol Udomwittayanukul
  • Tippa - Copyright (c) 2015, CAT-Fonts, Peter Wiegel

Development

Start a development environment with 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