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.yml
file with the following content:
services:
backend:
image: ghcr.io/kaneo-app/api:latest
environment:
JWT_ACCESS: "change_me"
DB_PATH: "/app/apps/api/data/kaneo.db"
ports:
- 1337:1337
volumes:
- sqlite_data:/app/apps/api/data
frontend:
image: ghcr.io/kaneo-app/web:latest
environment:
KANEO_API_URL: "http://localhost:1337"
ports:
- 5173:80
depends_on:
- backend
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!
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.