-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathindex.html
1776 lines (1606 loc) · 55.8 KB
/
index.html
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">
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Apache Fineract®</title>
<link rel="icon" type="image/png" href="images/apache-fineract-icon.png">
<link href="css/material-icons.css" type="text/css" rel="stylesheet">
<link href="css/materialize.min.css" type="text/css" rel="stylesheet"/>
<link href="css/fineract.css" type="text/css" rel="stylesheet">
</head>
<body id="top" class="ghost-white jet-text">
<header>
<div class="navbar-fixed">
<nav class="jet ghost-white-text">
<div class="nav-wrapper">
<div class="container">
<a href="#top" class="brand-logo">
<div class="logo-wrapper">
<div class="logo-container">
<img class="logo-img" src="images/apache-fineract-logo.png" alt="Apache Fineract Logo"/>
<div class="brand-text">
<span class="brand-name">Apache Fineract®</span>
</div>
</div>
</div>
</a>
<a href="#" data-activates="mobile-menu" class="button-collapse"><i class="material-icons">menu</i></a>
<ul class="right hide-on-med-and-down nav-links">
<li>
<a class="nav-link" href="#about">
<i class="material-icons left">info</i>About
</a>
</li>
<li>
<a class="nav-link" href="#contribute">
<i class="material-icons left">people</i>Contribute
</a>
</li>
<li>
<a class="nav-link" href="#downloads">
<i class="material-icons left">download</i>Downloads
</a>
</li>
<li>
<a class="nav-link" href="#resources">
<i class="material-icons left">library_books</i>Resources
</a>
</li>
<li>
<a class="nav-link" href="#reference">
<i class="material-icons left">link</i>Reference
</a>
</li>
<li>
<a class="nav-link theme-toggle" href="#" onclick="toggleTheme()">
<i class="material-icons">dark_mode</i>
</a>
</li>
</ul>
<ul class="side-nav ghost-white jet-text" id="mobile-menu">
<li class="side-nav-header">
<div class="logo-container">
<img class="logo" src="images/apache-fineract-logo.png" alt="Fineract Logo"/>
<span class="brand">Apache Fineract®</span>
</div>
</li>
<li><div class="divider"></div></li>
<li>
<a class="side-nav-link" href="#about" onclick="closeSideNav()">
<i class="material-icons left">info</i>About
</a>
</li>
<li>
<a class="side-nav-link" href="#contribute" onclick="closeSideNav()">
<i class="material-icons left">people</i>Contribute
</a>
</li>
<li>
<a class="side-nav-link" href="#downloads" onclick="closeSideNav()">
<i class="material-icons left">download</i>Downloads
</a>
</li>
<li>
<a class="side-nav-link" href="#resources" onclick="closeSideNav()">
<i class="material-icons left">library_books</i>Resources
</a>
</li>
<li>
<a class="side-nav-link" href="#reference" onclick="closeSideNav()">
<i class="material-icons left">link</i>Reference
</a>
</li>
</ul>
</div>
</div>
</nav>
</div>
<style>
.navbar-fixed {
height: 72px;
}
.nav-wrapper {
padding: 0 15px;
}
/* Logo Styles */
.logo-wrapper {
display: flex;
align-items: center;
height: 72px;
padding: 5px 0;
}
.logo-container {
display: flex;
align-items: center;
gap: 15px;
}
.logo-img {
height: 52px;
width: auto;
margin: 0;
}
.brand-text {
display: flex;
flex-direction: column;
justify-content: center;
}
.brand-name {
font-size: 1.8rem;
font-weight: 700;
color: #ffffff;
line-height: 1.2;
letter-spacing: 0.5px;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
/* Responsive adjustments */
@media only screen and (max-width: 992px) {
.brand-logo {
transform: translateX(-50%);
left: 50%;
}
.logo-img {
height: 46px;
}
.brand-name {
font-size: 1.6rem;
}
}
@media only screen and (max-width: 600px) {
.logo-img {
height: 40px;
}
.brand-name {
font-size: 1.4rem;
}
}
/* Rest of the existing styles */
.nav-links li {
margin: 0 5px;
}
.nav-link {
display: flex;
align-items: center;
padding: 0 15px;
height: 72px;
border-bottom: 3px solid transparent;
}
.nav-link {
background-color: transparent;
}
.nav-link i {
margin-right: 8px;
}
.side-nav-header {
padding: 20px 15px;
background-color: #343434;
}
.side-nav-header .logo-container {
flex-direction: column;
align-items: center;
}
.side-nav-header .brand {
color: white;
margin-top: 10px;
text-align: center;
}
.side-nav-link {
display: flex !important;
align-items: center;
padding: 15px !important;
height: auto !important;
}
.side-nav-link i {
margin-right: 15px !important;
color: #26a69a;
}
</style>
</header>
<div class="cube-loader">
<div class="cube">
<div class="face front"></div>
<div class="face back"></div>
<div class="face right"></div>
<div class="face left"></div>
<div class="face top"></div>
<div class="face bottom"></div>
<div class="inner-cube">
<div class="face front"></div>
<div class="face back"></div>
<div class="face right"></div>
<div class="face left"></div>
<div class="face top"></div>
<div class="face bottom"></div>
</div>
</div>
</div>
<style>
.cube-loader {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 120px;
height: 120px;
perspective: 1000px;
display: none; /* Hidden by default, show with .show class */
}
.cube-loader.show {
display: block;
}
.cube {
position: relative;
width: 100%;
height: 100%;
transform-style: preserve-3d;
animation: rotate 4s infinite linear;
}
.cube .face {
position: absolute;
width: 100%;
height: 100%;
background: rgba(186, 0, 143, 0.9);
border: 2px solid rgba(186, 0, 143, 1);
box-sizing: border-box;
}
.inner-cube {
position: absolute;
width: 60%;
height: 60%;
top: 20%;
left: 20%;
transform-style: preserve-3d;
}
.inner-cube .face {
background: rgba(0, 119, 190, 0.9);
border: 2px solid rgba(0, 119, 190, 1);
}
.inner-cube::after {
content: '';
position: absolute;
width: 40%;
height: 40%;
top: 30%;
left: 30%;
background: rgba(141, 198, 63, 0.9);
border: 2px solid rgba(141, 198, 63, 1);
transform: translateZ(0);
}
/* Face Transformations */
.cube .face.front { transform: rotateY(0deg) translateZ(60px); }
.cube .face.back { transform: rotateY(180deg) translateZ(60px); }
.cube .face.right { transform: rotateY(90deg) translateZ(60px); }
.cube .face.left { transform: rotateY(-90deg) translateZ(60px); }
.cube .face.top { transform: rotateX(90deg) translateZ(60px); }
.cube .face.bottom { transform: rotateX(-90deg) translateZ(60px); }
.inner-cube .face.front { transform: rotateY(0deg) translateZ(36px); }
.inner-cube .face.back { transform: rotateY(180deg) translateZ(36px); }
.inner-cube .face.right { transform: rotateY(90deg) translateZ(36px); }
.inner-cube .face.left { transform: rotateY(-90deg) translateZ(36px); }
.inner-cube .face.top { transform: rotateX(90deg) translateZ(36px); }
.inner-cube .face.bottom { transform: rotateX(-90deg) translateZ(36px); }
@keyframes rotate {
0% {
transform: rotateX(0deg) rotateY(0deg);
}
100% {
transform: rotateX(360deg) rotateY(360deg);
}
}
/* Add shadow effect */
.cube-loader::after {
content: '';
position: absolute;
bottom: -20px;
left: 50%;
transform: translateX(-50%);
width: 85%;
height: 10px;
background: rgba(0, 0, 0, 0.2);
border-radius: 50%;
filter: blur(5px);
animation: shadow 4s infinite linear;
}
@keyframes shadow {
0%, 100% {
transform: translateX(-50%) scale(1);
opacity: 0.4;
}
50% {
transform: translateX(-50%) scale(1.2);
opacity: 0.2;
}
}
</style>
<script>
// Function to show/hide loader
function showLoader() {
document.querySelector('.cube-loader').classList.add('show');
}
function hideLoader() {
document.querySelector('.cube-loader').classList.remove('show');
}
</script>
<main class="container">
<section class="section">
<h3 class="center-align">Platform for Digital Financial Services</h3>
<div class="row">
<div class="col s12">
<div class="card-panel">
<h4><i class="material-icons left">account_balance</i>What is Apache Fineract?</h4>
<p class="flow-text justify-align">
Apache Fineract® (\’fīn-,ә-,rakt\) is open source software for financial services, designed to create a cloud-ready
core banking system that enables digital financial services for everyone, including the unbanked and underbanked.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col s12 m6">
<div class="card-panel">
<h4><i class="material-icons left">rocket_launch</i>Our Mission</h4>
<div class="mission-points">
<div class="mission-item">
<i class="material-icons">cloud_done</i>
<p>Build and maintain a cloud-ready core banking system</p>
</div>
<div class="mission-item">
<i class="material-icons">security</i>
<p>Ensure robust, scalable, and secure operations</p>
</div>
<div class="mission-item">
<i class="material-icons">accessibility_new</i>
<p>Promote financial inclusion worldwide</p>
</div>
<div class="mission-item">
<i class="material-icons">savings</i>
<p>Enable digital transaction accounts for all</p>
</div>
</div>
</div>
</div>
<div class="col s12 m6">
<div class="card-panel">
<h4><i class="material-icons left">stars</i>Key Benefits</h4>
<div class="benefits-list">
<div class="benefit-item">
<i class="material-icons">verified</i>
<div class="benefit-content">
<h5>Reliable</h5>
<p>Proven track record in high-transaction environments</p>
</div>
</div>
<div class="benefit-item">
<i class="material-icons">trending_up</i>
<div class="benefit-content">
<h5>Scalable</h5>
<p>Designed for cloud deployment and growth</p>
</div>
</div>
<div class="benefit-item">
<i class="material-icons">savings</i>
<div class="benefit-content">
<h5>Affordable</h5>
<p>Cost-effective solution for institutions of all sizes</p>
</div>
</div>
<div class="benefit-item">
<i class="material-icons">api</i>
<div class="benefit-content">
<h5>Open APIs</h5>
<p>Headless application design for maximum flexibility</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col s12">
<div class="solution-providers">
<h3>For Solution Providers</h3>
<p class="intro-text">
Fineract® 1.x is a cloud-ready platform with open APIs, designed as a headless application.
This makes it ideal for solution providers who want to:
</p>
<div class="features-grid">
<div class="feature-card">
<i class="material-icons">integration_instructions</i>
<h4>Integrate</h4>
<p>Build custom interfaces and extensions</p>
</div>
<div class="feature-card">
<i class="material-icons">architecture</i>
<h4>Scale</h4>
<p>Deploy cloud-native solutions</p>
</div>
<div class="feature-card">
<i class="material-icons">hub</i>
<h4>Innovate</h4>
<p>Create unique financial products</p>
</div>
</div>
</div>
</div>
</div>
<style>
.mission-points, .benefits-list {
padding: 20px 0;
}
.mission-item, .benefit-item {
display: flex;
align-items: center;
margin-bottom: 15px;
}
.mission-item i, .benefit-item i {
margin-right: 15px;
color: #26a69a;
}
.mission-item p {
margin: 0;
font-size: 1.1rem;
}
.benefit-content {
flex: 1;
}
.benefit-content h5 {
margin: 0;
color: #26a69a;
}
.benefit-content p {
margin: 5px 0 0 0;
font-size: 1rem;
}
.solution-providers {
padding: 2rem 0;
}
.solution-providers h3 {
color: var(--text-color);
margin-bottom: 1.5rem;
}
.solution-providers p {
color: var(--text-color);
font-size: 1.1rem;
line-height: 1.6;
margin-bottom: 2rem;
opacity: 0.95;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.feature-card {
background-color: var(--card-bg);
border: 1px solid var(--border-color);
border-radius: 8px;
padding: 1.5rem;
text-align: center;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px var(--card-shadow);
}
.feature-card i {
color: var(--link-color);
font-size: 2.5rem;
margin-bottom: 1rem;
}
.feature-card h4 {
color: var(--text-color);
margin: 1rem 0;
font-size: 1.4rem;
}
.feature-card p {
color: var(--text-color);
margin: 0;
font-size: 1rem;
line-height: 1.5;
opacity: 0.9;
}
[data-theme="dark"] .feature-card {
background: linear-gradient(
145deg,
rgba(255, 255, 255, 0.05) 0%,
rgba(255, 255, 255, 0.02) 100%
);
}
</style>
<div class="divider"></div>
</section>
<section id="about" class="section">
<h3 class="center-align">About</h3>
<div class="row">
<div class="col s12">
<div class="card-panel">
<h4><i class="material-icons left">info</i>What is Fineract?</h4>
<p class="flow-text justify-align">
Apache Fineract® is a sophisticated core banking system that provides comprehensive financial technology solutions.
It offers robust features for client data management, loan and savings portfolio management, integrated real-time accounting,
and extensive reporting capabilities.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col s12 m6">
<div class="card-panel">
<h4><i class="material-icons left">settings</i>Key Features</h4>
<ul class="collection">
<li class="collection-item">
<i class="material-icons left tiny">tune</i>
<span><strong>Flexible Product Configuration</strong><br>
Customize financial products to meet your needs</span>
</li>
<li class="collection-item">
<i class="material-icons left tiny">verified_user</i>
<span><strong>KYC Documentation Support</strong><br>
Flexible customer system of record</span>
</li>
<li class="collection-item">
<i class="material-icons left tiny">rule</i>
<span><strong>Business Rule Sets</strong><br>
Four eyes principles and configurable workflows</span>
</li>
<li class="collection-item">
<i class="material-icons left tiny">payments</i>
<span><strong>Payment Recognitions</strong><br>
System of record for repayments </span>
</li>
<li class="collection-item">
<i class="material-icons left tiny">account_balance</i>
<span><strong>Portfolio Management</strong><br>
Complete loan and investment tracking</span>
</li>
</ul>
</div>
</div>
<div class="col s12 m6">
<div class="card-panel">
<h4><i class="material-icons left">architecture</i>Deployment Options</h4>
<ul class="collection">
<li class="collection-item">
<i class="material-icons left tiny">cloud</i>
<span><strong>Cloud Deployment</strong><br>
Scalable cloud-based solutions with active community support</span>
</li>
<li class="collection-item">
<i class="material-icons left tiny">computer</i>
<span><strong>On-Premise</strong><br>
Legacy or Traditional deployment </span>
</li>
<li class="collection-item">
<i class="material-icons left tiny">phone_iphone</i>
<span><strong>Mobile Access via Headless Design</strong><br>
Headless designs allow for third party mobile solutions</span>
</li>
<li class="collection-item">
<i class="material-icons left tiny">api</i>
<span><strong>Open API</strong><br>
Comprehensive API support since 2011</span>
</li>
<li class="collection-item">
<i class="material-icons left tiny">extension</i>
<span><strong>Extensible Architecture</strong><br>
Support for any organizational type or delivery channel</span>
</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="col s12">
<div class="card-panel yellow lighten-4">
<h4><i class="material-icons left">warning</i>Important Notice</h4>
<p class="flow-text">
We encourage all users of Fineract to:
</p>
<ul class="browser-default">
<li>Consult competent technical resources for questions about secure deployment and operation</li>
<li>Review the <a href="https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=91554327">FAQ</a> and
<a href="https://cwiki.apache.org/confluence/display/FINERACT/Securing+Fineract">Security Guide</a> for essential setup information</li>
<li>Refer to the Apache license for legal information</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="col s12">
<div class="card-panel red lighten-5">
<h4><i class="material-icons left">history</i>Deprecated Sub-Project Notice</h4>
<p class="flow-text">
The Fineract® CN project (microservice architecture version) was deprecated in May 2023 and archived in late 2023.
While this side-project served an important role in describing a microservice approach, it was never officially released.
</p>
</div>
</div>
</div>
<style>
.collection-item i.tiny {
margin-top: 3px;
}
.collection-item span {
display: block;
margin-left: 30px;
}
.collection-item strong {
color: #26a69a;
}
</style>
<div class="divider"></div>
</section>
<section id="contribute" class="section">
<h3 class="center-align">Contribute</h3>
<div class="row">
<div class="col s12">
<div class="card-panel">
<h4><i class="material-icons left">people</i>Join Our Community</h4>
<p class="flow-text justify-align">
The Apache Fineract® community welcomes contributors who want to support the
Fineract® technology. Our community builds everything from this website,
to the Fineract® code to documentation and best practices information.
</p>
<p class="flow-text justify-align">
We especially welcome additions and corrections to the
documentation, wiki, and website to improve the user experience.
Bug reports and fixes and additions to the Apache Fineract® code are welcome.
Helping users learn best practices also earns good karma in our community.
</p>
<p class="flow-text justify-align">
Security vulnerabilities necessitate special handling: These must be reported privately and immediately to the Apache Fineract Security Team, via email, to security at fineract.apache.org. Review and follow the <a href="https://www.apache.org/security/" target="_blank">Apache Security Team vulnerability reporting guidelines</a>, especially with regard to <a href="https://www.apache.org/security/committers.html#possible" target="_blank">working in private</a> prior to public disclosure.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col s12 m6">
<div class="card-panel">
<h4><i class="material-icons left">build</i>Ways to Contribute</h4>
<ul class="collection">
<li class="collection-item">
<i class="material-icons left tiny">code</i>
<span>Submit bug fixes and new features to the codebase</span>
</li>
<li class="collection-item">
<i class="material-icons left tiny">description</i>
<span>Improve documentation and wiki pages</span>
</li>
<li class="collection-item">
<i class="material-icons left tiny">web</i>
<span>Enhance the website user experience</span>
</li>
<li class="collection-item">
<i class="material-icons left tiny">school</i>
<span>Help users learn best practices</span>
</li>
<li class="collection-item">
<i class="material-icons left tiny">bug_report</i>
<span>Report bugs and suggest improvements</span>
</li>
</ul>
</div>
</div>
<div class="col s12 m6">
<div class="card-panel">
<h4><i class="material-icons left">mail</i>Mailing Lists</h4>
<div class="collection">
<div class="collection-item">
<h5 class="title">Development List</h5>
<p class="grey-text">For users, developers, and contributors discussing Apache Fineract®</p>
<div class="chip">
<i class="material-icons left">email</i>
</div>
<div class="mailing-actions">
<a href="mailto:[email protected]" class="btn-small waves-effect waves-light">
<i class="material-icons left">person_add</i>Subscribe
</a>
<a href="https://lists.apache.org/[email protected]" target="_blank" class="btn-small waves-effect waves-light">
<i class="material-icons left">history</i>Archives
</a>
</div>
</div>
<div class="collection-item">
<h5 class="title">Commits List</h5>
<p class="grey-text">Receive notifications of all code contributions</p>
<div class="chip">
<i class="material-icons left">email</i>
</div>
<div class="mailing-actions">
<a href="mailto:[email protected]" class="btn-small waves-effect waves-light">
<i class="material-icons left">person_add</i>Subscribe
</a>
<a href="https://markmail.org/search/?q=list%3Aorg.apache.fineract.commits+order%3Adate-backward" target="_blank" class="btn-small waves-effect waves-light">
<i class="material-icons left">history</i>Archives
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col s12">
<div class="card-panel yellow lighten-4">
<h4><i class="material-icons left">tips_and_updates</i>Getting Started</h4>
<p class="flow-text">
New to contributing? Check out our <a href="https://cwiki.apache.org/confluence/display/FINERACT/Contributor%27s+Zone">Contributor's Guide</a> for:
</p>
<div class="row">
<div class="col s12 m6">
<ul class="browser-default">
<li>Development environment setup</li>
<li>Coding standards and best practices</li>
<li>Pull request guidelines</li>
</ul>
</div>
<div class="col s12 m6">
<ul class="browser-default">
<li>Testing procedures</li>
<li>Documentation guidelines</li>
<li>Community best practices</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<style>
.mailing-actions {
margin-top: 10px;
}
.mailing-actions .btn-small {
margin-right: 10px;
}
.collection-item .title {
margin-top: 0;
color: #26a69a;
}
.collection-item .chip {
margin-bottom: 10px;
}
</style>
<div class="divider"></div>
</section>
<section id="downloads" class="section">
<h3 class="center-align">Downloads</h3>
<article>
<p class="flow-text justify-align">
Below you'll find official Apache Fineract® releases. We recommend using the latest stable version.
Each release includes binary and source distributions with corresponding verification files.
</p>
<div class="downloads-table">
<table>
<thead>
<tr>
<th>Version</th>
<th>Status</th>
<th>Release Notes</th>
<th>Binary</th>
<th>Source</th>
</tr>
</thead>
<tbody>
<tr>
<td class="version-col"><span class="gray-text">1.11.0</span></td>
<td><small>pre-release, coming soon</small></td>
<td><a href="https://cwiki.apache.org/confluence/display/FINERACT/1.11.0+%28Pre-+Release+work%29+-+Apache+Fineract">Apache Fineract® 1.11.0</a></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td class="version-col"><span class="green-text">1.10.1</span></td>
<td><small>current stable</small></td>
<td><a href="https://cwiki.apache.org/confluence/display/FINERACT/1.10.1+-+Apache+Fineract">Apache Fineract® 1.10.1</a></td>
<td>
<a href="https://fineract.gateway.scarf.sh/1.10.1">apache-fineract-1.10.1-binary.tar.gz</a>
<span class="file-type">
(<a href="https://www.apache.org/dist/fineract/1.10.1/apache-fineract-1.10.1-binary.tar.gz.asc">asc</a>, <a href="https://www.apache.org/dist/fineract/1.10.1/apache-fineract-1.10.1-binary.tar.gz.sha512">sha512</a>)
</span>
</td>
<td>
<a href="https://www.apache.org/dyn/closer.cgi?path=/fineract/1.10.1/apache-fineract-1.10.1-src.tar.gz">apache-fineract-1.10.1-src.tar.gz</a>
<span class="file-type">
(<a href="https://www.apache.org/dist/fineract/1.10.1/apache-fineract-1.10.1-src.tar.gz.asc">asc</a>, <a href="https://www.apache.org/dist/fineract/1.10.1/apache-fineract-1.10.1-src.tar.gz.sha512">sha512</a>)
</span>
</td>
</tr>
<tr>
<td class="version-col"><span class="red-text">1.9.0</span></td>
<td><small>EOL</small></td>
<td>unavailable</td>
<td> </td>
<td> </td>
</tr>
</tbody>
</table>
</div>
<div class="verification-section">
<h4><i class="material-icons">verified_user</i>Verifying Downloads</h4>
<p>We recommend verifying downloaded files using:</p>
<div class="verification-methods">
<div class="verification-method">
<div class="method-header">
<i class="material-icons">security</i>
<h5>ASC Files</h5>
</div>
<p>PGP signatures (verify with <a href="https://www.apache.org/dist/fineract/KEYS">KEYS</a> file)</p>
</div>
<div class="verification-method">
<div class="method-header">
<i class="material-icons">check_circle</i>
<h5>SHA512</h5>
</div>
<p>Checksums to verify file integrity</p>
</div>
</div>
<div class="verification-guide">
<p>See <a href="https://www.apache.org/info/verification.html" class="guide-link">Verifying Apache Software Foundation Releases<i class="material-icons">launch</i></a></p>
</div>
</div>
<p class="flow-text justify-align">If you are looking for an old release that is not present here or on the mirror, please check the
<a href="https://archive.apache.org/dist/fineract/">Apache archives</a>.</p>
<div class="divider"></div>
</article>
</section>
<section id="resources" class="section">
<h3 class="center-align">Resources</h3>
<div class="row">
<div class="col s12 m6">
<div class="card-panel">
<h4><i class="material-icons left">rocket_launch</i>Getting Started</h4>
<div class="collection">
<a href="https://www.fineract.dev/" class="collection-item">
<strong>Demo Server</strong>
<p class="grey-text">Try Fineract on our community CI/CD server</p>
</a>
<a href="https://cwiki.apache.org/confluence/display/FINERACT/Getting+Started+Docs" class="collection-item">
<strong>Getting Started Guide</strong>
<p class="grey-text">Setup guide for Fineract 1.x (non-CN)</p>
</a>
<a href="https://cwiki.apache.org/confluence/display/FINERACT/Contributor%27s+Zone" class="collection-item">
<strong>Contributor's Guide</strong>
<p class="grey-text">Learn how to contribute to Fineract</p>
</a>
</div>
</div>
</div>
<div class="col s12 m6">
<div class="card-panel">
<h4><i class="material-icons left">engineering</i>Development</h4>
<div class="collection">
<a href="https://github.com/apache/fineract" class="collection-item">
<strong>Main Repository</strong>
<p class="grey-text">Source code for Apache Fineract</p>
</a>
<a href="https://issues.apache.org/jira/projects/FINERACT" class="collection-item">
<strong>Issue Tracker</strong>
<p class="grey-text">Report bugs and request features</p>
</a>
<a href="https://cwiki.apache.org/confluence/display/FINERACT/Committer%27s+Zone" class="collection-item">
<strong>Committer's Zone</strong>
<p class="grey-text">Guidelines for pull requests and code reviews</p>
</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col s12 m6">
<div class="card-panel">
<h4><i class="material-icons left">description</i>Documentation</h4>
<div class="collection">
<a href="https://cwiki.apache.org/confluence/display/FINERACT/Fineract+Home" class="collection-item">
<strong>Project Wiki</strong>
<p class="grey-text">Project management and legacy documentation</p>
</a>
<a href="https://fineract.apache.org/docs/current/" class="collection-item">
<strong>Current Documentation</strong>
<p class="grey-text">System documentation</p>
</a>
<a href="https://fineract.apache.org/docs/legacy/index.html" class="collection-item">
<strong>API Documentation</strong>
<p class="grey-text">Legacy API reference</p>
</a>
<a href="https://cwiki.apache.org/confluence/x/nK9zB" class="collection-item">
<strong>Security Reports</strong>
<p class="grey-text">Fixed security issues and updates</p>