Development Setup
Get ZapTracker running locally in under 2 minutes.
Requirements
- Node.js 18+
- Git
Setup
bash
git clone https://github.com/YOUR-USERNAME/zap_dashboard.git
cd zap_dashboard
npm install
npm run devOpen http://localhost:5173
Project Structure
src/
├── components/ # Vue components
├── composables/ # Reusable logic
├── pages/ # Route pages
├── utils/ # Helpers
└── services/ # Business logicBuild
bash
npm run build # Production build
npm run preview # Preview buildTroubleshooting
| Problem | Solution |
|---|---|
| Node version error | Upgrade to Node 18+ |
| Port in use | npm run dev -- --port 3000 |
| Install fails | Delete node_modules and reinstall |