Files
band-management/apps/portal/README.md
bert.hausmans 1cb7674d52 refactor: align codebase with EventCrew domain and trim legacy band stack
- Update API: events, users, policies, routes, resources, migrations
- Remove deprecated models/resources (customers, setlists, invitations, etc.)
- Refresh admin app and docs; remove apps/band

Made-with: Cursor
2026-03-29 23:19:06 +02:00

630 B

Customer Portal

This folder will contain the Customer 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="Customer Portal"
  1. Update vite.config.ts to use port 5175:
export default defineConfig({
  // ... existing config
  server: {
    port: 5175,
  },
})
  1. Start development:
pnpm dev --port 5175

Port

Runs on http://localhost:5175