Skip to content

Tooling and Development

James Bradbury edited this page Jan 25, 2022 · 1 revision

The website is built with SvelteKit. This is not a tutorial for how to use SvelteKit so I won't be detailing the innards of that particular framework.

To start you'll need a node installation that is version 14 or greater. You'll also need npm or one of its cousin's pnpm or yarn.

Running the Website Locally

npm i

and then to run a local server:

npm run dev

This will spawn a web server at http://localhost:3000 which you can open in your local browser

Building a static site version

npm run build

The site will appear in build.

Clone this wiki locally