wemiy-cli
v1.0.0
Published
Wemiy CLI - AI tool with device flow authentication
Downloads
91
Readme
Wemiy CLI
Global installation
Install the CLI globally so the wemiy command is available from any directory:
cd server
npm install -g .After that you can run from anywhere:
orbit
orbit login
orbit wake
# etc.Development: link globally
To test the CLI globally without publishing, use npm link from the server folder:
cd server
npm linkThen orbit will run your local code. To remove the link: npm unlink -g orbit-cli.
Environment variables when running globally
- Current directory: If there is a
.envin the directory where you runorbit, it will be loaded (and override global config). - Global config: You can put a
.envfile at~/.orbit/.env(e.g.C:\Users\<You>\.orbit\.envon Windows). Use this forGITHUB_CLIENT_ID,GOOGLE_GENERATIVE_AI_API_KEY, etc. when you want the same config everywhere.
