Skip to content

Drippy's front-end dashboard for users and administrators.

Notifications You must be signed in to change notification settings

drippy-iot/drippy-iot.github.io

Repository files navigation

Setting up the Development Environment

# We use pnpm as our package manager.
npm install -g pnpm
# Install all dependencies.
pnpm install

# Build the project (as "release" mode).
pnpm build

# Update the `dist` folder every time a file in the dependency tree updates.
pnpm watch

# Same as the `watch` script, but also starts an HTTP server at port `1234` for convenience.
pnpm dev