MCPcopy Index your code
hub / github.com/DumbWareio/DumbDo

github.com/DumbWareio/DumbDo @main

Chat with this repo
repository ↗ · DeepWiki ↗ · + Follow
51 symbols 124 edges 8 files 0 documented · 0%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

DumbDo

A stupidly simple todo list application that just works. No complex database, no unnecessary features - just todos.

image

Features

  • ✨ Clean, minimal interface
  • 🌓 Dark/Light mode with system preference detection
  • 💾 File-based storage - todos persist between sessions
  • 📱 Fully responsive design
  • 🚀 Fast and lightweight
  • 🔒 PIN protection (4-10 digits if enabled)
  • 🌐 PWA Support

Environment Variables

Variable Description Default Required
PORT The port number the server will listen on 3000 No
DUMBDO_PIN PIN protection for accessing todos (4-10 digits) - No
SINGLE_LIST Show a single List of ToDos (without the selector) false No

Quick Start

Running Locally

  1. Clone the repository
git clone https://github.com/dumbwareio/dumbdo.git
cd dumbdo
  1. Install dependencies
npm install
  1. Start the server
npm start
  1. Open http://localhost:3000 in your browser

Using Docker

  1. Pull from Docker Hub (recommended)
docker pull dumbwareio/dumbdo:latest
docker run -p 3000:3000 -v $(pwd)/data:/app/data dumbwareio/dumbdo:latest
  1. Or build locally
docker build -t dumbwareio/dumbdo .
docker run -p 3000:3000 -v $(pwd)/data:/app/data dumbwareio/dumbdo
  1. Docker Compose
services:
  dumbdo:
    image: dumbwareio/dumbdo:latest
    container_name: dumbdo
    restart: unless-stopped
    ports:
      - ${DUMBDO_PORT:-3000}:3000
    volumes:
      - ${DUMBDO_DATA_PATH:-./data}:/app/data
    environment:
      - DUMBDO_PIN=${DUMBDO_PIN-}
      - DUMBDO_SITE_TITLE=DumbDo
      # (Optional) Restrict origins - ex: https://subdomain.domain.tld,https://auth.proxy.tld,http://internalip:port' (default is '*')
      # - ALLOWED_ORIGINS=http://localhost:3000
      # - NODE_ENV=development # default production (development allows all origins)
    #healthcheck:
    #  test: wget --spider -q  http://127.0.0.1:3000
    #  start_period: 20s
    #  interval: 20s
    #  timeout: 5s
    #  retries: 3

Storage

Todos are stored in a JSON file at app/data/todos.json. The file is automatically created when you first run the application.

To backup your todos, simply copy the data directory. To restore, place your backup todos.json in the data directory.

Development

The application follows the "Dumb" design system principles:

  • No complex storage
  • Single purpose, done well
  • "It just works"

Project Structure

dumbdo/
├── app.js          # Frontend JavaScript
├── index.html      # Main HTML file
├── server.js       # Node.js server
├── styles.css      # CSS styles
├── data/          # Todo storage directory
│   └── todos.json
├── Dockerfile     # Docker configuration
└── package.json   # Dependencies and scripts

Support the Project

Buy Me A Coffee

Contributing

This is meant to be a simple application. If you're writing complex code to solve a simple problem, you're probably doing it wrong. Keep it dumb, keep it simple.

Core symbols most depended-on inside this repo

show
called by 16
public/managers/toast.js
saveTodos
called by 10
public/app.js
renderTodos
called by 10
public/app.js
showError
called by 7
public/login.js
updateListSelector
called by 6
public/app.js
isLockedOut
called by 3
server.js
showLockout
called by 3
public/login.js
resetAttempts
called by 2
server.js

Shape

Function 45
Method 4
Class 2

Languages

TypeScript100%

Modules by API surface

public/app.js19 symbols
public/login.js10 symbols
server.js6 symbols
public/managers/toast.js6 symbols
scripts/cors.js5 symbols
scripts/pwa-manifest-generator.js3 symbols
scripts/convert-logo.js1 symbols
public/service-worker.js1 symbols

For agents

$ claude mcp add DumbDo \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact