- 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
625 B
625 B
Band Portal
This folder will contain the Band Member Portal using Vuexy Vue.
Setup
- Copy Vuexy Vue starter-kit (TypeScript) here:
cp -r /path/to/vuexy/typescript-version/starter-kit/* .
- Install dependencies:
pnpm install
- Create
.env.local:
VITE_API_URL=http://localhost:8000/api/v1
VITE_APP_NAME="Band Portal"
- Update
vite.config.tsto use port 5174:
export default defineConfig({
// ... existing config
server: {
port: 5174,
},
})
- Start development:
pnpm dev --port 5174
Port
Runs on http://localhost:5174