Skip to content

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 dev

Open http://localhost:5173

Project Structure

src/
├── components/    # Vue components
├── composables/   # Reusable logic
├── pages/         # Route pages
├── utils/         # Helpers
└── services/      # Business logic

Build

bash
npm run build      # Production build
npm run preview    # Preview build

Troubleshooting

ProblemSolution
Node version errorUpgrade to Node 18+
Port in usenpm run dev -- --port 3000
Install failsDelete node_modules and reinstall