Files
travandClaude Opus 5 d1cb472696 Initial commit: repair cafe kanban board
A per-event queue board for a repair cafe. Customers sign items in on a
shared tablet; volunteers drag repairs through Queue, In progress and Done
on a dashboard, then export the day's records as CSV.

Zero npm dependencies: node:http plus JSON files on disk, no build step.
Categories and house rules are set in config.json. Events are deleted
7 days after creation.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-08-15 15:02:45 -04:00

14 lines
1.1 KiB
JSON

{
"port": 8080,
"retentionDays": 7,
"categories": [
{ "name": "bicycle", "color": "#2f6f4f" },
{ "name": "appliance", "color": "#8a4b1f" },
{ "name": "sewing", "color": "#7a2f6a" },
{ "name": "electronics", "color": "#1f4f7a" },
{ "name": "computer", "color": "#4a4a8a" },
{ "name": "wood", "color": "#6b5230" }
],
"houseRules": "House Rules\n\n1. Repairs are carried out by volunteers, free of charge. We do our best, but we cannot guarantee that your item will be fixed.\n\n2. You stay with your item while it is being repaired, and you help where you can. This is a repair cafe, not a drop-off service.\n\n3. Repairs are done at your own risk. Neither the volunteers nor the organisers are liable for any loss or damage to your item, or for any consequences of the repair.\n\n4. We do not have every spare part. If a part is needed, we will tell you what to buy so you can come back another time.\n\n5. One item per visit, please, so everyone gets a turn. If the queue is short you are welcome to rejoin it with a second item.\n\n6. Please take your item and any waste home with you at the end of the day."
}