Running Locally

To run Xio locally, make sure you have Docker installed. This is the fastest way to get everything running in a clean, isolated environment.

Start with Docker

bashCopyEditgit clone https://github.com/Mintplex-Labs/anything-llm.git xio
cd xio
docker compose up --build

The frontend will be available at:

arduinoCopyEdithttp://localhost:3001

Manual Install (Advanced)

If you prefer more control, you can run the frontend and backend manually.

Backend:

bashCopyEditcd backend
npm install
npm run dev

Frontend:

bashCopyEditcd frontend
npm install
npm run dev

Before starting, ensure your .env file is set and a vector DB like Chroma is running in the background.

Last updated