Sign inSign up

bl4n/donetick-dashboard

By bl4n

โ€ขUpdated 3 months ago

Frontend to Donetick that just displays progression bar and permits to mark tasks as done

Image
0

603

bl4n/donetick-dashboard repository overview

โ ๐Ÿงน Maison Propre

A self-hosted dashboard for Donetickโ  โ€” tasks sorted by cleanliness state with automatic progress bars and multi-user support.

Source: gitlab.com/blankoworld/donetick-dashboardโ 


โ Quick Start

docker run -d \
  -p 3000:3000 \
  -e NUXT_DONETICK_URL=http://your-donetick-instance:2021 \
  bl4n/donetick-dashboard:latest

Open http://localhost:3000โ .

โ Docker Compose

services:
  dashboard:
    image: bl4n/donetick-dashboard:latest
    ports:
      - "3000:3000"
    environment:
      NUXT_DONETICK_URL: http://your-donetick-instance:2021
    restart: unless-stopped

โ Environment variables

VariableRequiredDefaultDescription
NUXT_DONETICK_URLyesโ€”Base URL of your Donetick instance
NUXT_PUBLIC_APP_TITLEno๐Ÿงน Maison PropreApp title shown in header and browser tab
NUXT_PUBLIC_LABEL_ORDERnoโ€”Comma-separated label names defining filter order. Unmatched labels appear last.

NUXT_DONETICK_URL is used server-side only by the Nuxt proxy โ€” it is never exposed to the browser.

โ App version display

The version shown in the UI is determined at build time:

  • Tagged commit (e.g. a release): displays the version from package.json
  • Any other commit (development, feature branches): displays the short Git hash
  • Git unavailable: falls back to the version from package.json

โ Tags

TagDescription
latestLatest build from the default branch
vX.Y.ZStable tagged release

โ License

GNU Affero General Public License v3.0โ 

Tag summary

Content type

Image

Digest

sha256:d9a014225โ€ฆ

Size

55.3 MB

Last updated

3 months ago

docker pull bl4n/donetick-dashboard