✨ Version 4.0.0 - Parallel Editing Edition!

The Open-Source
JIRA Alternative
for the Free World

Enterprise-grade project management and issue tracking with 297 API actions via unified /do endpoint plus RESTful endpoints, 100% JIRA feature parity, complete Agile/Scrum support, and zero licensing costs.

297
API Actions
100%
JIRA Parity
1,425+
Tests (98.8%)
$0
Licensing Fees
Scroll to explore

Enterprise-Ready Features

Everything you need for world-class project management

API-First Architecture

297 API actions via unified /do endpoint plus RESTful endpoints providing complete programmatic access to all features. Build your own UI or integrate with existing tools.

Agile & Scrum

Full support for Kanban boards, sprint planning, story points, velocity tracking, and burndown charts.

Custom Workflows

Design workflows that match your process. Define statuses, transitions, and ticket types for any methodology.

Multi-Tenancy

Enterprise-ready with account → organization → team hierarchy. Perfect for agencies and large organizations.

Custom Fields

11 field types including text, number, date, select, multi-select, and more. Adapt to any workflow.

Parallel Editing

Real-time collaboration with optimistic locking, conflict resolution, and complete change history tracking for all entities.

Zero Cost

Completely free and open source. No per-user fees, no hidden costs, no vendor lock-in. Deploy anywhere.

Powerful REST API

297 API actions via unified /do endpoint plus RESTful endpoints

  • ✅ Unified /do endpoint with 297 actions
  • ✅ RESTful endpoints for common operations
  • ✅ Authentication: /api/auth/*
  • ✅ Service Discovery: /api/services/*
  • ✅ WebSocket support: /ws/*
  • ✅ 100% JIRA Feature Parity Achieved
  • ✅ 93 Database Tables (V4 Schema)
View API Documentation
curl example
# Unified /do endpoint - Create a priority
 curl -X POST http://localhost:8080/do \
   -H "Content-Type: application/json" \
   -d '{
     "action": "priorityCreate",
     "jwt": "your-jwt-token",
     "data": {
       "title": "Critical",
       "level": 5,
       "color": "#FF0000"
     }
   }'

 # REST endpoint - User registration
 curl -X POST http://localhost:8080/api/auth/register \
   -H "Content-Type: application/json" \
   -d '{
     "username": "newuser",
     "password": "securepass",
     "email": "user@example.com",
     "name": "New User"
   }'

 # Response (both endpoints)
 {
   "errorCode": -1,
   "data": {
     "id": "550e8400-e29b-41d4...",
     "username": "newuser",
     "email": "user@example.com"
   }
 }
🚀
297
API Actions
📊
93
Database Tables
1,425+
Tests (98.8%)
100%
JIRA Parity

Comprehensive Documentation

Everything you need to get started and succeed

Get Started Today

Choose your installation method

📦 Pre-built Binary

Download and run immediately

🐳 Docker Container

One command deployment

docker run -d -p 8080:8080 helixtrack/core:latest

🛠️ Build from Source

Full control over the build

git clone https://github.com/Helix-Track/Core.git
cd Core/Application && go build

Get In Touch

Join the community and contribute