CLI for Inconvo development environment
npm install inconvo``bash`
npx inconvo@latest dev
This will:
1. Run the setup wizard (first time only)
2. Pull Docker images for the dev server
3. Start the dev server in Docker and the sandbox on your machine
Then open http://localhost:26686 to start chatting with your data.
- Docker (Docker Desktop or Docker daemon running)
- Node.js 18+ (only for running npx)
Start the Inconvo development environment.
`bash`
npx inconvo@latest dev
Options:
- --version - Use a specific release version
Re-run the configuration wizard to update your settings.
`bash`
npx inconvo@latest configure
On first run, the CLI will prompt you for:
- Database connection - PostgreSQL, MySQL, or SQL Server
- OpenAI API key - For the LLM
Configuration is stored in ~/.inconvo/config.env.~/.inconvo/data/inconvo.db
The CLI stores the dev-server SQLite database at .
> Note: When developing locally from a cloned repo, the dev-server uses .inconvo.env in the apps/dev-server/ directory instead. These are separate configurations.
If you want to contribute or develop locally, clone the repository instead:
`bash``
git clone https://github.com/inconvoai/inconvo.git
cd inconvo
pnpm install
pnpm dev
See the main repository README for development instructions.
Apache-2.0