Open Electricity

The frontend for the Open Electricity platform — an open-source project exploring Australia's electricity system through data visualisation and analysis.

For the Data Tracker (a.k.a. OpenNEM), see opennem/opennem-fe.

Tech Stack

  • SvelteKit with Svelte 5 (runes)
  • Tailwind CSS 4 with shadcn-svelte components
  • LayerCake + D3.js for data visualisation
  • Sanity CMS for editorial content
  • Cloudflare Pages for deployment
  • Clerk for authentication

Getting Started

Prerequisites

  • Node.js >= 22.12.0
  • pnpm — pinned via the packageManager field in package.json, so the easiest install is via Corepack: corepack enable (ships with Node 22+).

Setup

pnpm install
cp .env.example .env   # fill in your own keys — see "Environment variables" below
pnpm run dev

The dev server starts at http://localhost:5173.

Environment variables

Open Electricity is an open-source project, and contributors are expected to bring their own credentials for the external services they want to exercise locally (Open Electricity API, Sanity, Clerk, Mailchimp, etc.). The default workflow uses a plain .env file so anyone can clone the repo and run it without further tooling:

  1. Copy .env.example to .env.
  2. Fill in keys for the services you need. Most PUBLIC_* URLs in the example are sensible defaults; the API keys are yours to provide.
  3. Run pnpm run dev.

.env is gitignored. Only .env.example is checked in — keep it up to date when adding new variables.

Maintainer flow (Doppler)

Core maintainers use Doppler to share secrets across machines. If you have access to the Doppler project:

brew install dopplerhq/cli/doppler
doppler login
doppler setup            # link this directory to the openelectricity project + dev config
pnpm run doppler-dev     # runs vite dev with secrets injected from Doppler

doppler-dev, doppler-build, and doppler-preview are maintainer conveniences that wrap their plain counterparts in doppler run --. The plain scripts (with a local .env) remain the canonical path for contributors and forks — no Doppler account required.

Feature flags

Build-time toggles for incomplete or experimental UI live in PUBLIC_FEATURE_FLAGS — a single JSON-string env var. Flags are parsed in src/lib/stores/app.js and read via isFeatureEnabled('flag_name'). Flip a value and restart the dev server to apply.

Current flags:

Flag Default Effect
show_map_experiments false Reveals the experimental Facilities-map controls: marker-style picker (Circles / Hex / Heat), the "Show by" metric dropdown (Capacity / Generation / Pollution), and the live tuning panel (bottom-left).

Toggle locally via .env:

# .env
PUBLIC_FEATURE_FLAGS='{
  "show_map_experiments": true
}'

Toggle in Doppler (maintainers — apply per environment):

doppler secrets set PUBLIC_FEATURE_FLAGS='{"show_map_experiments": true}' --config dev
doppler secrets set PUBLIC_FEATURE_FLAGS='{"show_map_experiments": true}' --config stg
doppler secrets set PUBLIC_FEATURE_FLAGS='{"show_map_experiments": true}' --config prd

The full JSON object replaces the previous value, so include every flag you want to keep — run doppler secrets get PUBLIC_FEATURE_FLAGS --plain --config <name> first to see the current value.

Commands

Command Description
pnpm run dev Start dev server using .env (default)
pnpm run doppler-dev Start dev server with secrets injected from Doppler (maintainers)
pnpm run build Production build
pnpm run doppler-build Production build with secrets injected from Doppler (maintainers)
pnpm run preview Preview production build
pnpm run doppler-preview Preview production build with secrets injected from Doppler (maintainers)
pnpm run check Type check with svelte-check
pnpm run lint Lint with Prettier + ESLint
pnpm run format Auto-format with Prettier
pnpm run test Run unit tests (Vitest)
pnpm run test:e2e Run end-to-end tests (Playwright)
pnpm run dev-sync After a release: fast-forward dev to main and push (returns to main)

Project Structure

src/
├── lib/
│   ├── components/        # UI and chart components
│   │   ├── charts/        # LayerCake-based visualisations
│   │   ├── form-elements/ # Reusable form controls
│   │   ├── info-graphics/ # Interactive homepage visuals
│   │   └── ui/            # shadcn-svelte components
│   ├── fuel-tech-groups/  # Energy source categorisation
│   ├── models/            # Static scenario data
│   ├── opennem/           # OpenNEM API integration
│   ├── stores/            # Global state (Svelte stores)
│   ├── theme/             # Colour palettes and theming
│   ├── types/             # TypeScript definitions (JSDoc)
│   └── utils/             # Data processing utilities
├── routes/
│   ├── (main)/            # Primary app routes
│   │   ├── about/         # Team and project info
│   │   ├── analysis/      # Editorial articles (Sanity CMS)
│   │   ├── facilities/    # Power station explorer
│   │   ├── records/       # Historical electricity records
│   │   ├── scenarios/     # Future energy modelling
│   │   └── studio/        # Data exploration tools
│   │   ├── strata/        # Published chart detail pages
│   │   └── strata-community/ # Community chart gallery
│   ├── (micro)/           # Embeddable widgets and micro-apps
│   │   ├── record/        # Minimal record displays
│   │   ├── strata-embed/  # Strata chart iframe embeds
│   │   ├── stratify/      # Stratify chart builder (closed beta)
│   │   └── widget/        # Grid status widget
│   └── api/               # Server-side data endpoints
└── ...

Deployment

Branch Environment
main Production — openelectricity.org.au
dev Staging — dev.openelectricity.org.au

Production deployments are triggered via a Cloudflare deploy hook on version tags:

pnpm version patch   # or minor / major
git push             # push.followTags pushes the tag automatically

GitHub Actions picks up the v* tag and triggers the Cloudflare build.

Licence

See LICENSE for details.

Top categories

Loading Svelte Themes