YAML Metadata Warning:empty or missing yaml metadata in repo card
Check out the documentation for more information.
EV Grid Advisory Dashboard
Interactive visualization for electric vehicle integration into distribution grids.
π Bundle Placement
When cloning from GitHub, the complete project structure is preserved:
grid-ev-advisory/
βββ dashboard/ β You are here
βββ offline/
βββ notebooks/
βββ data/
βββ README.md
π― Getting Started
From Full Project Clone
# 1. Clone the main project
git clone https://github.com/Youssef-Azzam/Grid-EV-advisory
cd grid-ev-advisory
# 2. Go to dashboard directory
cd dashboard
# 3. Install Node dependencies
npm install
# 4. Choose your setup:
# Option A: Development (hot reload)
npm run dev
# Visit http://localhost:5173/
# Option B: Production build
npm run build
# Files saved to: dashboard/dist/
# Then serve with: http-server dist/
# Visit http://127.0.0.1:8080
π Serving the Dashboard
Development Mode
cd dashboard
npm run dev
Production Mode
cd dashboard
npm run build
http-server dist/
# Visit http://127.0.0.1:8080 or other URLs shown
β οΈ Important: Directory Structure
When using http-server, ALWAYS be in the dashboard/ directory:
cd dashboard
http-server dist/ β
Correct
http-server public/ β
Correct
# From project root - these will fail (404):
http-server dashboard/dist/ β Wrong - looks for dashboard/dashboard/dist/
π¦ Build Output
After npm run build, the bundle is created at:
dashboard/dist/
βββ index.html
βββ assets/
βββ [other files]
Deploy this dist/ folder to:
- GitHub Pages
- Netlify, Vercel
- Any static hosting service
- Docker container
- Self-hosted server
π Features
- Interactive scenario browser (1,008 scenarios)
- Grid stress visualization with Leaflet maps
- Time navigation (96 timesteps per scenario)
- Bus-level detail view
- Filter by EV count and severity
π Links
- Main Project: https://github.com/Youssef-Azzam/Grid-EV-advisory
- Live Dashboard: https://Youssef-Azzam.github.io/Grid-EV-advisory/
π Available Scripts
npm run devβ Start dev server (port 5173)npm run buildβ Create production bundle indist/npm run previewβ Preview production buildnpm run lintβ Check code quality
- Downloads last month
- 12