Quick Start Guide
Kaneo is an open source project management platform focused on simplicity and efficiency. This comprehensive guide will help you get up and running quickly with a production-ready setup.
🌟 Try Kaneo Cloud: Don't want to self-host? Get started instantly with our free cloud version - no installation required and always free!
Why Choose Kaneo?
- 🚀 Fast Setup: Get running in under 5 minutes with Docker Compose
- 🔒 Self-Hosted: Your data stays on your infrastructure
- 🛠️ Customizable: Open source and built for extensibility
- 📊 PostgreSQL: Reliable database with proper data integrity
- 🔧 Production Ready: Built with Docker, Kubernetes, and modern DevOps practices
Docker Compose Installation
The easiest way to get started with Kaneo is using Docker Compose. This setup includes PostgreSQL for reliable data storage:
Create your Docker Compose configuration
Create a compose.yml
file with the following content:
Start the services
Run the following command to start all services:
This will download the images and start the containers in the background.
Access your Kaneo instance
Open http://localhost:5173 in your browser.
Create your first project
Create your first project and start managing your tasks! 🎉
You'll be able to:
- Create projects and organize tasks
- Assign team members and set priorities
- Track progress with kanban boards
- Collaborate with your team in real-time
Environment Variables Reference
Variable | Description | Required | Default |
---|---|---|---|
KANEO_API_URL | The URL where the API is accessible | Yes | - |
JWT_ACCESS | Secret key for generating JWT tokens | Yes | - |
DATABASE_URL | PostgreSQL connection string | Yes | - |
DISABLE_REGISTRATION | Enable/disable new user registration | No | false |
Database Setup
Kaneo uses PostgreSQL for reliable data storage with proper relational integrity. The Docker Compose setup above handles this automatically, but if you're running Kaneo outside of Docker, you'll need to:
Manual PostgreSQL Setup
-
Install PostgreSQL (version 12 or higher)
-
Create a database and user:
-
Set the DATABASE_URL environment variable:
Security Considerations
For production deployments, make sure to:
- Change default passwords: Use strong, unique passwords for JWT_ACCESS and database credentials
- Use HTTPS: Deploy behind a reverse proxy with SSL/TLS certificates
- Regular backups: Set up automated database backups
- Update regularly: Keep your Kaneo installation up to date
Migration from SQLite
If you're upgrading from a previous version that used SQLite, you'll need to migrate your data to PostgreSQL. We recommend:
- Export your data from the old SQLite database
- Set up PostgreSQL using the new Docker Compose configuration
- Import your data into the new PostgreSQL database
Contact us on Discord if you need help with the migration process.
Next Steps
Now that you have Kaneo running, explore these features and deployment options:
- GitHub Integration - Automatically create GitHub issues when tasks are created
- Deploy with Nginx - Set up a reverse proxy with SSL
- Deploy with Traefik - Modern reverse proxy with automatic HTTPS
- Kubernetes Deployment - Scalable container orchestration
- Terminology - Learn about Kaneo's core concepts and features
Getting Help
- GitHub Issues - Report bugs or request features
- Discord Community - Get help from the community
- Documentation - Browse the complete documentation