Skip to content

ucb-ee290c/scum-v-bringup

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

scum-v-bringup

Various files for bringing up the Single-Chip Micro Mote V (SCμM-V)

Documentation

📖 SCuM-V Documentation (Nextra Site) - Interactive documentation

Contributing to Documentation

Installing Node.js and npm

npm is bundled with Node.js. Install Node.js for your OS, then verify with node -v and npm -v.

  • Windows:

  • macOS:

    • Install Homebrew (if not installed):
      /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
    • Install Node.js (includes npm):
      brew install node
    • Verify: node -v and npm -v
  • Linux (Ubuntu/Debian):

    • Update and install:
      sudo apt update
      sudo apt install nodejs npm
    • Verify: node -v and npm -v
  • More options: See the official npm guide: Downloading and installing Node.js and npm

How to contribute to the docs

  1. Fork the repo on GitHub: ucb-ee290c/scum-v-bringup
  2. Clone your fork:
    git clone https://github.com/<your-username>/scum-v-bringup.git
    cd scum-v-bringup
  3. Create a branch:
    git checkout -b docs/your-change
  4. Edit files under docs/, preview locally (below), commit and push:
    git add .
    git commit -m "docs: describe your change"
    git push origin docs/your-change
  5. Open a Pull Request to ucb-ee290c/scum-v-bringup with a clear description.

Building Documentation Locally

cd docs
npm install
npm run dev    # Development server at http://localhost:3000
npm run build  # Production build

About

Various files for bringing up the Single-Chip Micro Mote V (SCμM-V)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 11