Kaneo LogoKaneo

Quick Start

Kaneo is an open source project management platform focused on simplicity and efficiency. This guide will help you get up and running quickly.

Docker Compose Installation

The easiest way to get started with Kaneo is using Docker Compose:

Create a compose.yml file with the following content:

services:
  backend:
    image: ghcr.io/usekaneo/api:latest
    environment:
      JWT_ACCESS: "your_secure_jwt_token"
      DB_PATH: "/app/apps/api/data/kaneo.db"
    ports:
      - 1337:1337
    restart: unless-stopped
    volumes:
      - sqlite_data:/app/apps/api/data
 
  frontend:
    image: ghcr.io/usekaneo/web:latest
    environment:
      KANEO_API_URL: "http://localhost:1337"
    ports:
      - 5173:5173
    restart: unless-stopped
 
volumes:
  sqlite_data:

Run docker compose up -d to start the services.

Open http://localhost:5173 in your browser.

Create your first project and start managing your tasks! 🎉

Environment Variables

VariableDescription
KANEO_API_URLThe URL of the API
JWT_ACCESSSecret key for generating JWT tokens
DB_PATHThe path to the database file
ALLOW_REGISTRATIONEnable/disable new user registration (default: true)

Next Steps

On this page