An open source project management platform focused on simplicity and efficiency.
Quick Start | Website | Demo | Discord
- π Simple & Fast: Minimalist interface with powerful features
 - π Self-hosted: Full control over your data
 - π¨ Customizable: Make it yours with extensive customization options
 - π€ Open Source: MIT licensed, free forever
 
- Create a 
compose.ymlfile with the following content: 
services:
  backend:
    image: ghcr.io/usekaneo/api:latest
    environment:
      JWT_ACCESS: "change_me"
      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:80
    restart: unless-stopped
volumes:
  sqlite_data:- 
Run
docker compose up -dto start the services. - 
Open http://localhost:5173 in your browser.
 - 
Create your first project and start managing your tasks!
 
| Variable | Description | 
|---|---|
KANEO_API_URL | 
The URL of the API | 
JWT_ACCESS | 
Secret key for generating JWT tokens | 
DB_PATH | 
The path to the database file | 
For detailed instructions and documentation, visit our Documentation.
We welcome contributions! Please see our Contributing Guide for details.
- Discord - Chat with the community
 - GitHub Issues - Report bugs or suggest features
 - Website - Official website
 
This project is licensed under the MIT License.