Skip to content

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

License

Notifications You must be signed in to change notification settings

dpmpc/calendaronline

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pdfcalendar

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

You could see it in action on k51.de

Deploy with docker compose

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

Used libraries

Developemnt

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