Skip to content

Latest commit

 

History

History
41 lines (33 loc) · 936 Bytes

README.md

File metadata and controls

41 lines (33 loc) · 936 Bytes

courier

A self-hosted parcel tracker. Heavily inspired by ParcelPony.

Features

  • nodejs version
  • docker & docker-compose
  • track almost any courier in the world

TODO

  • edit tracking?
  • don't reload on "delete", just remove item from the list
  • don't reload on on "add" - add item immediately, then reload in bg
  • maybe add "force reload" option to invalidate cache?

Setup

Prerequisities

  • Register at trackinghive and get the API token (In Settings/API Keys)

Run

Use this docker-compose.yml:

---
version: '3.7'
services:
  courier:
    container_name: courier
    image: tborychowski/courier
    restart: unless-stopped
    ports:
      - "3000:3000"
    environment:
      - NODE_ENV=production
      - TOKEN=<trackinghive token>

That's it! Now you can add & track your parcels from the web interface.