Skip to content

tofuapps/tofuapps.github.io

Repository files navigation

Tofu Apps website

This repository holds the website source code for Tofu Apps.

Setup

npm ci

Developing

# start server with automatic reload for development
npm run dev

# you can additionally open the webpage in a new browser tab
npm run dev -- --open

Building

# builds a fully static site to `docs` folder
# `docs` is used because that's what github pages requires.
npm run build

Production

# test the production static site build (with express.js)
npm run preview