Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 532 Bytes

README.md

File metadata and controls

29 lines (24 loc) · 532 Bytes

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