2025-08-26 22:40:49 +02:00
2025-08-26 22:40:49 +02:00
2025-08-26 20:30:48 +02:00
2025-08-26 22:40:49 +02:00
2025-08-24 14:23:51 +02:00
2025-08-24 14:23:51 +02:00
2025-08-24 14:23:51 +02:00
2025-08-24 14:23:51 +02:00
2025-08-24 00:24:40 +02:00
2025-08-26 20:30:48 +02:00
2025-08-26 22:40:49 +02:00

docker run --rm -p 3030:3000 gotenberg/gotenberg:8

Configuration

This application is configured using a config.json file in the root of the project. You can use the config.json.example file as a starting point.

{
  "email": {
    "smtp": {
      "host": "smtp.example.com",
      "port": 587,
      "username": "user",
      "password": "password"
    },
    "from": "from@example.com"
  },
  "pdf": {
    "hostname": "http://localhost:3030"
  },
  "gitea": {
    "url": "https://gitea.example.com",
    "token": "your-gitea-token"
  }
}

API Endpoints

POST /invoice

Creates a new invoice.

curl -X POST -H "Content-Type: application/json" -d '{
  "debtor": {
    "name": "John Doe",
    "Address": {
      "street": "Musterstrasse",
      "number": "1",
      "zipCode": "1234",
      "place": "Musterstadt",
      "country": "CH"
    },
    "contact": "john.doe@example.com"
  },
  "creditor": {
    "name": "Jane Doe",
    "Address": {
      "street": "Beispielweg",
      "number": "2",
      "zipCode": "5678",
      "place": "Beispielhausen",
      "country": "CH"
    },
    "contact": "jane.doe@example.com",
    "iban": "CH1234567890123456789"
  },
  "durationThreshold": "1h",
  "hourlyRate": 100,
  "repositories": [
    "lou-taylor/accounting"
  ]
}' http://localhost:8080/invoice
Description
No description provided
Readme 8.6 MiB
2025-12-01 21:29:58 +01:00
Languages
Go 85.5%
HTML 10.5%
CSS 3.3%
Dockerfile 0.7%