Quickstart
This section is for contributors and maintainers who want to work on Spendemon locally.
Docs development
From the docs project root, install dependencies and start the Docusaurus site:
npm install
npm run start
This starts a local development server with live reload so you can iterate on documentation quickly.
Typical contribution flow
- Make your content or code changes.
- Run the local dev server and review the result in the browser.
- Repeat until the page structure, wording, and links look right.
- Build the site before opening a pull request when possible.
Build for verification
Use the production build to catch broken pages, invalid links, or other static-site issues:
npm run build