Files
band-management/apps/band/README.md

46 lines
625 B
Markdown

# Band Portal
This folder will contain the Band Member Portal using Vuexy Vue.
## Setup
1. Copy Vuexy Vue **starter-kit** (TypeScript) here:
```bash
cp -r /path/to/vuexy/typescript-version/starter-kit/* .
```
2. Install dependencies:
```bash
pnpm install
```
3. Create `.env.local`:
```env
VITE_API_URL=http://localhost:8000/api/v1
VITE_APP_NAME="Band Portal"
```
4. Update `vite.config.ts` to use port 5174:
```typescript
export default defineConfig({
// ... existing config
server: {
port: 5174,
},
})
```
5. Start development:
```bash
pnpm dev --port 5174
```
## Port
Runs on http://localhost:5174