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.
Everything you need for world-class project management
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.
Full support for Kanban boards, sprint planning, story points, velocity tracking, and burndown charts.
Design workflows that match your process. Define statuses, transitions, and ticket types for any methodology.
Enterprise-ready with account → organization → team hierarchy. Perfect for agencies and large organizations.
11 field types including text, number, date, select, multi-select, and more. Adapt to any workflow.
Real-time collaboration with optimistic locking, conflict resolution, and complete change history tracking for all entities.
Completely free and open source. No per-user fees, no hidden costs, no vendor lock-in. Deploy anywhere.
297 API actions via unified /do endpoint plus RESTful endpoints
# 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"
}
}
Everything you need to get started and succeed
Complete guide with 28 chapters covering all features, tutorials, and best practices.
Read the guide →Quick reference manual with installation, configuration, and API basics.
View manual →Complete API documentation with request/response examples for all 297 actions and REST endpoints.
Browse API docs →Technical implementation details, architecture overview, and system internals.
Read implementation →Choose your installation method
One command deployment
docker run -d -p 8080:8080 helixtrack/core:latest
Full control over the build
git clone https://github.com/Helix-Track/Core.git
cd Core/Application && go build
Join the community and contribute