Files
smesh/hotrefresh
mleku 2aa0a8c460 feat: add QR scanner, improve UX, and simplify navigation
- Add live camera QR scanner for nsec/ncryptsec login
- Replace browser prompt() with proper password dialog for ncryptsec
- Add missing /notes/:id route for thread view navigation
- Remove explore section entirely (button, page, routes)
- Remove profile button from bottom nav, avatar now opens profile
- Remove "Notes" tab from feed, default to showing all posts/replies
- Add PasswordPromptProvider for secure password input
- Add SidebarDrawer for mobile navigation
- Add domain layer with value objects and adapters
- Various UI and navigation improvements

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-28 04:00:16 +02:00

12 lines
262 B
Bash
Executable File

#!/bin/bash
# Restart the Vite dev server on port 8080
# Kill any existing process on port 8080
pkill -f "vite.*--port 8080" 2>/dev/null || true
sleep 0.5
# Start the dev server in background
npm run dev:8080 &
echo "Dev server restarting on 0.0.0.0:8080..."