Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
018874e
chore: 🔧 new publish workflow also for tchibo branch (#809)
phoebus-84 Feb 4, 2026
2b9aba6
style: 🎨 lighter markdown editor (#763)
phoebus-84 Feb 4, 2026
73f6680
feat: ✨ links to projects now lead to new products page (#813)
phoebus-84 Feb 5, 2026
2e8bbc4
feat: ✨ improve UX for unauthenticated users (#814)
phoebus-84 Feb 5, 2026
cfcd214
fix: 🐛 project images editing (#817)
phoebus-84 Feb 9, 2026
cf564f7
fix: 🐛 qr code disappear for projects that have it and new tabs mappi…
phoebus-84 Feb 9, 2026
bb0db29
feat: ✨ add recyclability and repairability filters (#821)
phoebus-84 Feb 25, 2026
611d8d6
feat: interfacer gui big rework phase 1 (#825)
phoebus-84 Apr 2, 2026
dcbd6a4
fix: 🐛 migrate to mominatim for location autocomplete and lookup (#834)
phoebus-84 Apr 13, 2026
13e9ba8
feat(dpp): ✨ dedicated DPP detail page with prototype-matching UI (#835)
phoebus-84 Apr 15, 2026
2bba881
feat(layout): ✨ show top bar and sidebar for unauthenticated users (#…
phoebus-84 Apr 15, 2026
ae6b087
fix(nav): 🐛 Designs links to /designs, fix active state catch-all (#837)
phoebus-84 Apr 15, 2026
0495012
feat: ✨ wire sorting orderBy and distinctPrimaryAccountableCount from…
phoebus-84 Apr 16, 2026
54c1c88
feat(dpp): ✨ redesign DPP tab to match Figma prototype (#839)
phoebus-84 Apr 17, 2026
4bf1d59
refactor(ui): remove redundant owner banners and fix search filters (…
phoebus-84 Apr 20, 2026
f8cd61c
refactor(tags): ♻️ 🏷️ prefix user tags with tag- to disambiguate from…
phoebus-84 Apr 21, 2026
f470fa2
feat(project): ✨ add DPP-backed 3D model viewer (#848)
phoebus-84 May 6, 2026
49a731c
fix(docker): 🐛 replace broken pnpm download URL with corepack (#849)
phoebus-84 May 6, 2026
5b0bc48
chore: 🔧 merge dtec into main
phoebus-84 May 8, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 19 additions & 4 deletions .beads/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,20 @@ daemon.lock
daemon.log
daemon.pid
bd.sock
sync-state.json
last-touched

# Local version tracking (prevents upgrade notification spam after git ops)
.local_version

# Legacy database files
db.sqlite
bd.db

# Worktree redirect file (contains relative path to main repo's .beads/)
# Must not be committed as paths would be wrong in other clones
redirect

# Merge artifacts (temporary files from 3-way merge)
beads.base.jsonl
beads.base.meta.json
Expand All @@ -23,7 +32,13 @@ beads.left.meta.json
beads.right.jsonl
beads.right.meta.json

# Keep JSONL exports and config (source of truth for git)
!issues.jsonl
!metadata.json
!config.json
# Sync state (local-only, per-machine)
# These files are machine-specific and should not be shared across clones
.sync.lock
sync_base.jsonl

# NOTE: Do NOT add negation patterns (e.g., !issues.jsonl) here.
# They would override fork protection in .git/info/exclude, allowing
# contributors to accidentally commit upstream issue databases.
# The JSONL files (issues.jsonl, interactions.jsonl) and config files
# are tracked by git by default since no pattern above ignores them.
2 changes: 1 addition & 1 deletion .beads/last-touched
Original file line number Diff line number Diff line change
@@ -1 +1 @@
interfacer-gui-zsv
interfacer-gui-4c2.3
6 changes: 5 additions & 1 deletion .github/workflows/test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,11 @@ jobs:
run: cp .env.example .env.local
- run: npm run build
- name: Install Playwright Browsers
run: npx playwright install --with-deps
timeout-minutes: 10
run: |
sudo sed -i 's/azure\.archive\.ubuntu\.com/archive.ubuntu.com/g' /etc/apt/sources.list /etc/apt/sources.list.d/*.list 2>/dev/null || true
sudo apt-get update -qq
npx playwright install --with-deps
- name: Run Playwright tests
run: npx playwright test
- uses: actions/upload-artifact@v4.6.0
Expand Down
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ ARG NODE_ENV=production
ENV NODE_ENV=$NODE_ENV

RUN apk add --no-cache libc6-compat
RUN wget "https://github.com/pnpm/pnpm/releases/latest/download/pnpm-linuxstatic-x64" -O /bin/pnpm && \
chmod +x /bin/pnpm
RUN corepack enable && corepack prepare pnpm@latest --activate

WORKDIR /build

Expand Down
Loading
Loading