-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1174 lines (1048 loc) · 45.3 KB
/
Copy pathindex.html
File metadata and controls
1174 lines (1048 loc) · 45.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="HelixTrack Core V3.0 - Comprehensive documentation for the modern, open-source JIRA alternative">
<title>HelixTrack Core V3.0 - Documentation Portal</title>
<style>
:root {
--primary-color: #0066cc;
--secondary-color: #00cc66;
--accent-color: #ff6600;
--dark-bg: #1a1a2e;
--card-bg: #16213e;
--text-light: #ffffff;
--text-muted: #a0a0a0;
--border-color: #2d3748;
--success-color: #00cc66;
--warning-color: #ff9900;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, var(--dark-bg) 0%, #0f1419 100%);
color: var(--text-light);
line-height: 1.6;
min-height: 100vh;
}
.container {
max-width: 1400px;
margin: 0 auto;
padding: 20px;
}
/* Header */
header {
background: linear-gradient(135deg, var(--card-bg) 0%, var(--dark-bg) 100%);
padding: 40px 0;
margin-bottom: 40px;
border-bottom: 3px solid var(--primary-color);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.header-content {
max-width: 1400px;
margin: 0 auto;
padding: 0 20px;
}
h1 {
font-size: 3em;
margin-bottom: 10px;
background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.subtitle {
font-size: 1.3em;
color: var(--text-muted);
margin-bottom: 20px;
}
.version-badge {
display: inline-block;
background: var(--success-color);
color: var(--dark-bg);
padding: 8px 20px;
border-radius: 20px;
font-weight: bold;
margin-right: 10px;
font-size: 0.9em;
}
.status-badge {
display: inline-block;
background: var(--primary-color);
color: var(--text-light);
padding: 8px 20px;
border-radius: 20px;
font-weight: bold;
font-size: 0.9em;
}
/* Navigation */
nav {
background: var(--card-bg);
padding: 20px;
border-radius: 10px;
margin-bottom: 40px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
nav ul {
list-style: none;
display: flex;
flex-wrap: wrap;
gap: 15px;
justify-content: center;
}
nav a {
color: var(--text-light);
text-decoration: none;
padding: 12px 24px;
background: linear-gradient(135deg, var(--primary-color), #0052a3);
border-radius: 8px;
transition: all 0.3s ease;
font-weight: 500;
display: inline-block;
}
nav a:hover {
background: linear-gradient(135deg, var(--secondary-color), #00a352);
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0, 204, 102, 0.3);
}
/* Stats Bar */
.stats-bar {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin-bottom: 40px;
}
.stat-card {
background: var(--card-bg);
padding: 25px;
border-radius: 10px;
text-align: center;
border-left: 4px solid var(--primary-color);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease;
}
.stat-card:hover {
transform: translateY(-5px);
}
.stat-number {
font-size: 2.5em;
font-weight: bold;
color: var(--primary-color);
margin-bottom: 5px;
}
.stat-label {
color: var(--text-muted);
font-size: 0.95em;
}
/* Section */
section {
margin-bottom: 50px;
}
h2 {
font-size: 2.2em;
margin-bottom: 20px;
color: var(--primary-color);
border-bottom: 2px solid var(--border-color);
padding-bottom: 10px;
}
h3 {
font-size: 1.6em;
margin: 30px 0 15px 0;
color: var(--secondary-color);
}
/* Diagram Grid */
.diagram-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
gap: 30px;
margin-top: 30px;
}
.diagram-card {
background: var(--card-bg);
border-radius: 12px;
overflow: hidden;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
transition: all 0.3s ease;
border: 1px solid var(--border-color);
}
.diagram-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 24px rgba(0, 102, 204, 0.4);
border-color: var(--primary-color);
}
.diagram-header {
background: linear-gradient(135deg, var(--primary-color), #0052a3);
padding: 20px;
color: var(--text-light);
}
.diagram-header h3 {
margin: 0;
color: var(--text-light);
font-size: 1.4em;
}
.diagram-body {
padding: 20px;
}
.diagram-preview {
background: #f5f5f5;
border-radius: 8px;
padding: 20px;
margin-bottom: 20px;
text-align: center;
min-height: 200px;
display: flex;
align-items: center;
justify-content: center;
border: 2px dashed var(--border-color);
}
.diagram-preview img {
max-width: 100%;
height: auto;
border-radius: 4px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.diagram-placeholder {
color: #666;
font-style: italic;
text-align: center;
}
.diagram-description {
color: var(--text-muted);
margin-bottom: 20px;
line-height: 1.8;
}
.diagram-meta {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 10px;
margin-bottom: 20px;
padding: 15px;
background: rgba(0, 102, 204, 0.1);
border-radius: 8px;
}
.meta-item {
font-size: 0.9em;
}
.meta-label {
color: var(--text-muted);
font-weight: 500;
}
.meta-value {
color: var(--text-light);
font-weight: bold;
}
.diagram-actions {
display: flex;
gap: 10px;
flex-wrap: wrap;
}
.btn {
padding: 12px 24px;
border-radius: 8px;
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
display: inline-block;
text-align: center;
border: none;
cursor: pointer;
font-size: 0.95em;
}
.btn-primary {
background: linear-gradient(135deg, var(--primary-color), #0052a3);
color: var(--text-light);
}
.btn-primary:hover {
background: linear-gradient(135deg, #0052a3, var(--primary-color));
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0, 102, 204, 0.4);
}
.btn-secondary {
background: linear-gradient(135deg, var(--secondary-color), #00a352);
color: var(--dark-bg);
}
.btn-secondary:hover {
background: linear-gradient(135deg, #00a352, var(--secondary-color));
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0, 204, 102, 0.4);
}
.btn-outline {
background: transparent;
border: 2px solid var(--primary-color);
color: var(--primary-color);
}
.btn-outline:hover {
background: var(--primary-color);
color: var(--text-light);
}
/* Documentation Cards */
.doc-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 25px;
margin-top: 30px;
}
.doc-card {
background: var(--card-bg);
padding: 30px;
border-radius: 12px;
border-left: 5px solid var(--secondary-color);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
transition: all 0.3s ease;
}
.doc-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 16px rgba(0, 204, 102, 0.3);
}
.doc-card h3 {
margin-top: 0;
margin-bottom: 15px;
}
.doc-card p {
color: var(--text-muted);
margin-bottom: 20px;
line-height: 1.8;
}
.doc-card .file-info {
font-size: 0.85em;
color: var(--text-muted);
margin-bottom: 15px;
padding: 10px;
background: rgba(0, 0, 0, 0.2);
border-radius: 6px;
}
/* Features List */
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
margin-top: 30px;
}
.feature-item {
background: var(--card-bg);
padding: 25px;
border-radius: 10px;
border-top: 3px solid var(--accent-color);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
.feature-item h4 {
color: var(--accent-color);
margin-bottom: 10px;
font-size: 1.2em;
}
.feature-item ul {
list-style: none;
padding-left: 0;
}
.feature-item li {
padding: 8px 0;
color: var(--text-muted);
border-bottom: 1px solid var(--border-color);
}
.feature-item li:last-child {
border-bottom: none;
}
.feature-item li:before {
content: "✓ ";
color: var(--success-color);
font-weight: bold;
margin-right: 8px;
}
/* Footer */
footer {
background: var(--card-bg);
padding: 40px 20px;
margin-top: 60px;
border-top: 3px solid var(--primary-color);
text-align: center;
}
.footer-content {
max-width: 1400px;
margin: 0 auto;
}
.footer-links {
margin-top: 20px;
display: flex;
gap: 30px;
justify-content: center;
flex-wrap: wrap;
}
.footer-links a {
color: var(--primary-color);
text-decoration: none;
transition: color 0.3s ease;
}
.footer-links a:hover {
color: var(--secondary-color);
}
/* Responsive */
@media (max-width: 768px) {
h1 {
font-size: 2em;
}
.diagram-grid,
.doc-grid {
grid-template-columns: 1fr;
}
nav ul {
flex-direction: column;
}
nav a {
width: 100%;
text-align: center;
}
.stats-bar {
grid-template-columns: 1fr;
}
}
/* Alert Box */
.alert {
padding: 20px;
border-radius: 10px;
margin-bottom: 30px;
border-left: 5px solid;
}
.alert-info {
background: rgba(0, 102, 204, 0.1);
border-color: var(--primary-color);
color: var(--text-light);
}
.alert-warning {
background: rgba(255, 153, 0, 0.1);
border-color: var(--warning-color);
color: var(--text-light);
}
.alert-success {
background: rgba(0, 204, 102, 0.1);
border-color: var(--success-color);
color: var(--text-light);
}
.alert h4 {
margin-top: 0;
margin-bottom: 10px;
font-size: 1.2em;
}
/* Code blocks */
code {
background: rgba(0, 0, 0, 0.3);
padding: 2px 8px;
border-radius: 4px;
font-family: 'Courier New', monospace;
color: var(--secondary-color);
font-size: 0.9em;
}
pre {
background: rgba(0, 0, 0, 0.3);
padding: 20px;
border-radius: 8px;
overflow-x: auto;
margin: 20px 0;
border-left: 4px solid var(--primary-color);
}
pre code {
background: none;
padding: 0;
}
</style>
</head>
<body>
<header>
<div class="header-content">
<h1>HelixTrack Core V3.0</h1>
<p class="subtitle">Modern, Open-Source JIRA Alternative - Complete Documentation Portal</p>
<div>
<span class="version-badge">Version 3.0.0</span>
<span class="status-badge">Production Ready</span>
</div>
</div>
</header>
<div class="container">
<!-- Quick Navigation -->
<nav>
<ul>
<li><a href="#overview">Overview</a></li>
<li><a href="#diagrams">Architecture Diagrams</a></li>
<li><a href="#documentation">Documentation</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#quick-start">Quick Start</a></li>
<li><a href="https://github.com/Helix-Track/Core" target="_blank">GitHub Repository</a></li>
</ul>
</nav>
<!-- Stats Bar -->
<div class="stats-bar">
<div class="stat-card">
<div class="stat-number">282</div>
<div class="stat-label">API Actions</div>
</div>
<div class="stat-card">
<div class="stat-number">89</div>
<div class="stat-label">Database Tables</div>
</div>
<div class="stat-card">
<div class="stat-number">1,375</div>
<div class="stat-label">Unit Tests</div>
</div>
<div class="stat-card">
<div class="stat-number">50K+</div>
<div class="stat-label">Requests/Second</div>
</div>
<div class="stat-card">
<div class="stat-number">71.9%</div>
<div class="stat-label">Test Coverage</div>
</div>
<div class="stat-card">
<div class="stat-number">100%</div>
<div class="stat-label">JIRA Parity</div>
</div>
</div>
<!-- Overview Section -->
<section id="overview">
<h2>Project Overview</h2>
<div class="alert alert-success">
<h4>Production Ready - 100% Feature Complete</h4>
<p>HelixTrack Core is a comprehensive, modern, open-source project management and issue tracking system built with Go 1.22+. It provides complete JIRA feature parity with a microservices architecture, supporting multi-platform clients (Web, Desktop, Android, iOS).</p>
</div>
<div class="doc-grid">
<div class="doc-card">
<h3>Microservices Architecture</h3>
<p>Fully decoupled services communicating via HTTP/JSON. All services can run on separate machines or clusters.</p>
<ul style="list-style: none; padding: 0;">
<li style="padding: 5px 0; color: var(--text-muted);">✓ Core Service (Go + Gin Gonic)</li>
<li style="padding: 5px 0; color: var(--text-muted);">✓ Authentication Service (replaceable)</li>
<li style="padding: 5px 0; color: var(--text-muted);">✓ Permissions Engine (replaceable)</li>
<li style="padding: 5px 0; color: var(--text-muted);">✓ Optional Extensions (Times, Documents, Chats)</li>
</ul>
</div>
<div class="doc-card">
<h3>Multi-Database Support</h3>
<p>Flexible database abstraction layer supporting both development and production environments.</p>
<ul style="list-style: none; padding: 0;">
<li style="padding: 5px 0; color: var(--text-muted);">✓ SQLite (Development)</li>
<li style="padding: 5px 0; color: var(--text-muted);">✓ PostgreSQL (Production)</li>
<li style="padding: 5px 0; color: var(--text-muted);">✓ Automated migrations (V1 → V2 → V3)</li>
<li style="padding: 5px 0; color: var(--text-muted);">✓ 89 tables across 3 schema versions</li>
</ul>
</div>
<div class="doc-card">
<h3>RESTful API Design</h3>
<p>Unified <code>/do</code> endpoint with action-based routing for all 282 operations.</p>
<ul style="list-style: none; padding: 0;">
<li style="padding: 5px 0; color: var(--text-muted);">✓ JWT-based authentication</li>
<li style="padding: 5px 0; color: var(--text-muted);">✓ RBAC authorization</li>
<li style="padding: 5px 0; color: var(--text-muted);">✓ Consistent error codes</li>
<li style="padding: 5px 0; color: var(--text-muted);">✓ JSON request/response format</li>
</ul>
</div>
</div>
</section>
<!-- Architecture Diagrams Section -->
<section id="diagrams">
<h2>Architecture Diagrams</h2>
<div class="alert alert-info">
<h4>Professional-Grade Visual Documentation</h4>
<p>Five comprehensive DrawIO diagrams covering all aspects of the system architecture. Each diagram is available in both editable DrawIO format and high-resolution PNG.</p>
</div>
<div class="diagram-grid">
<!-- Diagram 1: System Architecture -->
<div class="diagram-card">
<div class="diagram-header">
<h3>01. System Architecture</h3>
</div>
<div class="diagram-body">
<div class="diagram-preview">
<div class="diagram-placeholder">
<p><strong>High-resolution PNG export pending</strong><br>
View the DrawIO source file for full details</p>
</div>
</div>
<div class="diagram-description">
Complete multi-layer architecture overview showing client applications, Core API layer with unified /do endpoint, middleware stack, handler routing, database abstraction, and monitoring systems.
</div>
<div class="diagram-meta">
<div class="meta-item">
<span class="meta-label">Dimensions:</span>
<span class="meta-value">1920x1200px</span>
</div>
<div class="meta-item">
<span class="meta-label">Elements:</span>
<span class="meta-value">50+ components</span>
</div>
<div class="meta-item">
<span class="meta-label">File Size:</span>
<span class="meta-value">15KB</span>
</div>
<div class="meta-item">
<span class="meta-label">Annotations:</span>
<span class="meta-value">30+ detailed</span>
</div>
</div>
<div class="diagram-actions">
<a href="diagrams/01-system-architecture.drawio" class="btn btn-primary" download>Download DrawIO</a>
<a href="diagrams/01-system-architecture.png" class="btn btn-secondary">View PNG</a>
<a href="https://app.diagrams.net/" target="_blank" class="btn btn-outline">Edit Online</a>
</div>
</div>
</div>
<!-- Diagram 2: Database Schema -->
<div class="diagram-card">
<div class="diagram-header">
<h3>02. Database Schema Overview</h3>
</div>
<div class="diagram-body">
<div class="diagram-preview">
<div class="diagram-placeholder">
<p><strong>High-resolution PNG export pending</strong><br>
View the DrawIO source file for full details</p>
</div>
</div>
<div class="diagram-description">
Comprehensive ER diagram showing all 89 database tables organized by domain and color-coded by schema version (V1, Phase 1-3). Includes relationships, mapping tables, and design patterns documentation.
</div>
<div class="diagram-meta">
<div class="meta-item">
<span class="meta-label">Dimensions:</span>
<span class="meta-value">2400x1800px</span>
</div>
<div class="meta-item">
<span class="meta-label">Elements:</span>
<span class="meta-value">120+ tables</span>
</div>
<div class="meta-item">
<span class="meta-label">File Size:</span>
<span class="meta-value">25KB</span>
</div>
<div class="meta-item">
<span class="meta-label">Annotations:</span>
<span class="meta-value">100+ detailed</span>
</div>
</div>
<div class="diagram-actions">
<a href="diagrams/02-database-schema-overview.drawio" class="btn btn-primary" download>Download DrawIO</a>
<a href="diagrams/02-database-schema-overview.png" class="btn btn-secondary">View PNG</a>
<a href="https://app.diagrams.net/" target="_blank" class="btn btn-outline">Edit Online</a>
</div>
</div>
</div>
<!-- Diagram 3: API Request Flow -->
<div class="diagram-card">
<div class="diagram-header">
<h3>03. API Request Flow</h3>
</div>
<div class="diagram-body">
<div class="diagram-preview">
<div class="diagram-placeholder">
<p><strong>High-resolution PNG export pending</strong><br>
View the DrawIO source file for full details</p>
</div>
</div>
<div class="diagram-description">
Complete request/response lifecycle through the unified /do endpoint. Shows 9-step flow from client request through routing, middleware, handlers, database, and back with error handling paths.
</div>
<div class="diagram-meta">
<div class="meta-item">
<span class="meta-label">Dimensions:</span>
<span class="meta-value">1600x1200px</span>
</div>
<div class="meta-item">
<span class="meta-label">Elements:</span>
<span class="meta-value">40+ steps</span>
</div>
<div class="meta-item">
<span class="meta-label">File Size:</span>
<span class="meta-value">18KB</span>
</div>
<div class="meta-item">
<span class="meta-label">Annotations:</span>
<span class="meta-value">40+ detailed</span>
</div>
</div>
<div class="diagram-actions">
<a href="diagrams/03-api-request-flow.drawio" class="btn btn-primary" download>Download DrawIO</a>
<a href="diagrams/03-api-request-flow.png" class="btn btn-secondary">View PNG</a>
<a href="https://app.diagrams.net/" target="_blank" class="btn btn-outline">Edit Online</a>
</div>
</div>
</div>
<!-- Diagram 4: Auth & Permissions -->
<div class="diagram-card">
<div class="diagram-header">
<h3>04. Authentication & Permissions Flow</h3>
</div>
<div class="diagram-body">
<div class="diagram-preview">
<div class="diagram-placeholder">
<p><strong>High-resolution PNG export pending</strong><br>
View the DrawIO source file for full details</p>
</div>
</div>
<div class="diagram-description">
Dual-flow diagram showing JWT-based authentication and RBAC authorization. Includes permissions engine internals, role hierarchy, security levels, and permission check algorithm with real-world examples.
</div>
<div class="diagram-meta">
<div class="meta-item">
<span class="meta-label">Dimensions:</span>
<span class="meta-value">1400x1000px</span>
</div>
<div class="meta-item">
<span class="meta-label">Elements:</span>
<span class="meta-value">35+ flows</span>
</div>
<div class="meta-item">
<span class="meta-label">File Size:</span>
<span class="meta-value">16KB</span>
</div>
<div class="meta-item">
<span class="meta-label">Annotations:</span>
<span class="meta-value">35+ detailed</span>
</div>
</div>
<div class="diagram-actions">
<a href="diagrams/04-auth-permissions-flow.drawio" class="btn btn-primary" download>Download DrawIO</a>
<a href="diagrams/04-auth-permissions-flow.png" class="btn btn-secondary">View PNG</a>
<a href="https://app.diagrams.net/" target="_blank" class="btn btn-outline">Edit Online</a>
</div>
</div>
</div>
<!-- Diagram 5: Microservices Interaction -->
<div class="diagram-card">
<div class="diagram-header">
<h3>05. Microservices Interaction</h3>
</div>
<div class="diagram-body">
<div class="diagram-preview">
<div class="diagram-placeholder">
<p><strong>High-resolution PNG export pending</strong><br>
View the DrawIO source file for full details</p>
</div>
</div>
<div class="diagram-description">
Complete microservices topology showing Core service, Authentication service, Permissions engine, and optional extensions. Includes HTTP communication patterns and 3 deployment scenarios (Dev, Production, HA).
</div>
<div class="diagram-meta">
<div class="meta-item">
<span class="meta-label">Dimensions:</span>
<span class="meta-value">1800x1200px</span>
</div>
<div class="meta-item">
<span class="meta-label">Elements:</span>
<span class="meta-value">45+ services</span>
</div>
<div class="meta-item">
<span class="meta-label">File Size:</span>
<span class="meta-value">17KB</span>
</div>
<div class="meta-item">
<span class="meta-label">Annotations:</span>
<span class="meta-value">40+ detailed</span>
</div>
</div>
<div class="diagram-actions">
<a href="diagrams/05-microservices-interaction.drawio" class="btn btn-primary" download>Download DrawIO</a>
<a href="diagrams/05-microservices-interaction.png" class="btn btn-secondary">View PNG</a>
<a href="https://app.diagrams.net/" target="_blank" class="btn btn-outline">Edit Online</a>
</div>
</div>
</div>
</div>
<div class="alert alert-success" style="margin-top: 30px;">
<h4>✅ PNG Exports Complete!</h4>
<p>All 5 diagrams have been successfully exported to high-resolution PNG format (300 DPI, transparent backgrounds, ~4.5MB total).</p>
<p style="margin-top: 15px;"><strong>To update diagrams in the future:</strong></p>
<ol style="margin-left: 20px; color: var(--text-muted); margin-top: 10px;">
<li>Edit the .drawio file in <a href="https://app.diagrams.net/" target="_blank" style="color: var(--secondary-color);">DrawIO</a></li>
<li>Run export: <code>cd docs/diagrams && docker-compose -f docker-compose.export.yml up</code></li>
<li>Or use: <code>./export-to-png.sh</code></li>
</ol>
<p style="margin-top: 15px;">See <a href="diagrams/DIAGRAM_EXPORT_GUIDE.md" style="color: var(--secondary-color);">DIAGRAM_EXPORT_GUIDE.md</a> for complete documentation.</p>
</div>
</section>
<!-- Documentation Section -->
<section id="documentation">
<h2>Comprehensive Documentation</h2>
<div class="doc-grid">
<div class="doc-card">
<h3>Architecture Documentation</h3>
<p>Complete technical architecture documentation covering all system layers, database design, API structure, security, microservices, and deployment strategies.</p>
<div class="file-info">
📄 ARCHITECTURE.md • ~50KB • 10 major sections
</div>
<a href="ARCHITECTURE.md" class="btn btn-primary">Read Documentation</a>
</div>
<div class="doc-card">
<h3>User Manual</h3>
<p>Complete API reference guide with all 282 actions, request/response formats, authentication, permissions, and integration examples for developers.</p>
<div class="file-info">
📄 USER_MANUAL.md • 400+ lines • Full API reference
</div>
<a href="USER_MANUAL.md" class="btn btn-primary">Read Manual</a>
</div>
<div class="doc-card">
<h3>Deployment Guide</h3>
<p>Comprehensive deployment instructions covering Docker, Kubernetes, bare metal, cloud platforms, SSL configuration, and production best practices.</p>
<div class="file-info">
📄 DEPLOYMENT.md • 600+ lines • Production-ready
</div>
<a href="DEPLOYMENT.md" class="btn btn-primary">Read Guide</a>
</div>
<div class="doc-card">
<h3>Diagram Documentation</h3>
<p>Detailed descriptions of all 5 architecture diagrams, viewing instructions, update procedures, and integration guidelines for documentation.</p>
<div class="file-info">
📄 diagrams/README.md • 7KB • Complete diagram index
</div>
<a href="diagrams/README.md" class="btn btn-primary">View Index</a>
</div>
<div class="doc-card">
<h3>Documentation Summary</h3>
<p>Executive summary of all deliverables, file structure, quality metrics, pending tasks, and next steps for the documentation project.</p>
<div class="file-info">
📄 DOCUMENTATION_SUMMARY.md • 10KB • Project overview
</div>
<a href="DOCUMENTATION_SUMMARY.md" class="btn btn-primary">Read Summary</a>
</div>
<div class="doc-card">
<h3>Deliverables Report</h3>
<p>Complete deliverables checklist, diagram statistics, completion status, time investment, and usage instructions for all documentation.</p>
<div class="file-info">
📄 DELIVERABLES_COMPLETE.md • 8KB • Status report
</div>
<a href="DELIVERABLES_COMPLETE.md" class="btn btn-primary">View Report</a>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features">
<h2>Feature Breakdown</h2>
<div class="features-grid">
<div class="feature-item">
<h4>V1 Core Features (23)</h4>
<ul>
<li>Tickets & Projects</li>
<li>Workflows & Boards</li>
<li>Sprints & Teams</li>
<li>Labels & Comments</li>
<li>Attachments & Links</li>
<li>Organizations & Accounts</li>
</ul>
</div>
<div class="feature-item">
<h4>Phase 1: JIRA Parity (6)</h4>
<ul>
<li>Priority Management</li>
<li>Resolution Tracking</li>
<li>Version Management</li>
<li>Watchers</li>
<li>Advanced Filters</li>
<li>Custom Fields</li>
</ul>
</div>
<div class="feature-item">
<h4>Phase 2: Agile Enhancements (7)</h4>
<ul>
<li>Epic Support</li>
<li>Subtask Management</li>
<li>Work Logs & Time Tracking</li>
<li>Project Roles</li>
<li>Security Levels</li>
<li>Dashboards & Widgets</li>
<li>Board Configuration</li>
</ul>
</div>
<div class="feature-item">
<h4>Phase 3: Collaboration (5)</h4>
<ul>
<li>Voting System</li>
<li>Project Categories</li>
<li>Notification Schemes</li>
<li>Activity Streams</li>
<li>@Mentions</li>
</ul>
</div>
<div class="feature-item">
<h4>Optional Extensions (4)</h4>
<ul>
<li>Lokalisation Service</li>
<li>Times (Time Tracking)</li>
<li>Documents Management</li>
<li>Chats Integration</li>
</ul>
</div>
<div class="feature-item">
<h4>Infrastructure (8)</h4>
<ul>
<li>JWT Authentication</li>
<li>RBAC Permissions</li>
<li>Multi-Database Support</li>
<li>Health Monitoring</li>
<li>Structured Logging</li>
<li>HTTPS/TLS Support</li>
<li>Graceful Shutdown</li>
<li>CORS Handling</li>
</ul>
</div>
</div>
</section>
<!-- Quick Start Section -->
<section id="quick-start">
<h2>Quick Start Guide</h2>
<div class="alert alert-info">
<h4>Get Started in 5 Minutes</h4>
<p>Follow these steps to set up and run HelixTrack Core locally.</p>
</div>