Files
band-management/apps/app
bert.hausmans 4cda1c0a92 docs: expand EventCrew README with stack and structure
Sync auto-imports and typed-router generated declarations from Vue tooling.

Made-with: Cursor
2026-03-29 23:27:11 +02:00
..

Band Portal

This folder will contain the Band Member Portal using Vuexy Vue.

Setup

  1. Copy Vuexy Vue starter-kit (TypeScript) here:
cp -r /path/to/vuexy/typescript-version/starter-kit/* .
  1. Install dependencies:
pnpm install
  1. Create .env.local:
VITE_API_URL=http://localhost:8000/api/v1
VITE_APP_NAME="Band Portal"
  1. Update vite.config.ts to use port 5174:
export default defineConfig({
  // ... existing config
  server: {
    port: 5174,
  },
})
  1. Start development:
pnpm dev --port 5174

Port

Runs on http://localhost:5174