OmniChain is distributed as an open-source project on GitHub. The main branch will always contain the latest stable software version.
The project is built with minimal requirements. Just follow the instructions below to get started.
Requirements
- Windows/Linux/MacOS
- Git
- NodeJS v20.11.0 or higher
Installation
- Clone the repository:
git clone https://github.com/zenoverflow/omnichain
- Install dependencies:
cd omnichain
npm install
- Start the app:
npm run serve
Update
Simply pull the latest changes from the repository and reinstall the dependencies:
git pull
npm install
Port configuration
By default, the app runs on port 12538
, and the OpenAI-compatible API runs on port 5002
.
You can change these ports by running the serve command with the following arguments:
npm run serve -- --port 12345 --port_openai 5003