How to install usekaneo/kaneo. Official installation instructions. Project installation guide. Framework or library installation. Build installation instructions. How to setup and install from GitHub. Installation steps and setup instructions. Official docs and installation instructions GitHub.
usekaneo/kaneo Installation Guide
How to install usekaneo/kaneo. Official project installation instructions and setup guide.
⚡
Automated Install (Recommended)
Quick installation instructions for usekaneo/kaneo. This is the fastest way to complete project installation and setup.
Install via curl
curl -fsSL https://hexmos.com/ipm-install | bash &&
ipm i usekaneo/kaneoor
Install via npx
npx @hexmos/ipm i usekaneo/kaneoManual Installation Methods
Manual installation instructions. How to install from GitHub source.
One-Click Deployment with drim
curl -fsSL https://assets.kaneo.app/install.sh | sh -y
sudo drim setup -yQuick Start with Docker Compose
curl -fsSL -o compose.yml https://raw.githubusercontent.com/usekaneo/kaneo/main/compose.yml
curl -fsSL -o .env.sample https://raw.githubusercontent.com/usekaneo/kaneo/main/.env.sample
cp .env.sample .env
echo "KANEO_CLIENT_URL=http://localhost:5173" >> .env
echo "POSTGRES_PASSWORD=$(openssl rand -hex 32)" >> .env
echo "AUTH_SECRET=$(openssl rand -hex 32)" >> .env
docker compose up -dDevelopment Setup
git clone https://github.com/usekaneo/kaneo.git
cd kaneo
pnpm install -y
cp .env.sample .env
pnpm dev