Skip to content

rei-project/REIMON

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

REIMON

REIMON is the interface to REIVM

Development Setup

REIMON uses REIVM as a git submodule for development:

# Clone with submodules
git clone --recursive git@github.com:rei-project/REIMON.git

# Or if already cloned
git submodule update --init --recursive

# Install dependencies
bun install

Making Changes to REIVM

When you need to modify REIVM while working on REIMON:

  1. Make changes in reivm/ directory
  2. Test changes: bun test
  3. Commit to REIVM:
   cd reivm
   git add .
   git commit -m "Add feature X"
   git push origin main
  1. Update REIMON to use new REIVM:
   cd ..
   git add reivm
   git commit -m "Update REIVM submodule"
   git push origin main

Using Published REIVM

Once REIVM stabilizes, switch to npm package:

git rm reivm
bun install @rei-project/reivm@latest

About

REIMON is the interface to REIVM

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published