-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
index.html
885 lines (803 loc) · 38.6 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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Kiwi TCMS - the leading open source test management system</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<!-- Custom Styles -->
<link href="/theme/style/style.css" rel="stylesheet">
<link href="/theme/style/responsive-1440.css" rel="stylesheet">
<link href="/theme/style/responsive-1024.css" rel="stylesheet">
<link href="/theme/style/responsive-768.css" rel="stylesheet">
<link href="/theme/style/responsive-micro.css" rel="stylesheet">
<link href="/theme/style/github.css" rel="stylesheet">
<script defer data-domain="kiwitcms.org" src="https://plausible.io/js/script.js"></script>
<script
id="fsc-api"
src="https://d1f8f9xcsvx3ha.cloudfront.net/sbl/0.8.5/fastspring-builder.min.js"
type="text/javascript"
data-storefront="mrsenko.onfastspring.com/popup-kiwitcms">
</script>
</head>
<body class="page_home">
<nav id="main-nav">
<a href="/" style="display:inherit;">
<img src="/theme/images/Kiwi-TCMS-logo-header.svg" alt="Kiwi TCMS Logo">
</a>
<i class="las la-bars" title="Open menu" onclick="toggle('hidden-menu', 'visible')" style="align-self: center;"></i>
<ul class="hidden-menu" id="hidden-menu">
<a href="/">
<img src="/theme/images/Kiwi-TCMS-logo-header.svg" alt="Kiwi TCMS Logo">
</a>
<i class="las la-times" title="Close" onclick="toggle('hidden-menu', 'visible')"></i>
<li>
<a href="/features/" >Features</a>
</li>
<li>
<a href="http://kiwitcms.readthedocs.io"">Documentation</a>
</li>
<li>
<a href="/community/" >Community</a>
</li>
<li>
<a href="/support/" >Support</a>
</li>
<li>
<a href="/blog/" >Blog</a>
</li>
<li>
<a href="/team/" >Team</a>
</li> </ul>
<ul>
<li>
<a href="/features/" >Features</a>
</li>
<li>
<a href="http://kiwitcms.readthedocs.io"">Documentation</a>
</li>
<li>
<a href="/community/" >Community</a>
</li>
<li>
<a href="/support/" >Support</a>
</li>
<li>
<a href="/blog/" >Blog</a>
</li>
<li>
<a href="/team/" >Team</a>
</li> <li>
<div class="drop-btn" id="nav-drop"
onmouseenter="toggle('nav-drop','drop-down');"
onmouseleave="toggle('nav-drop','drop-down');"
>
<div class="btn" icon>Get Started <i></i></div>
<!-- WARNING: this menu needs to be copied everywhere where we have this
button b/c Pelican doesn't support includes from HTML content files:
https://github.com/getpelican/pelican/issues/2783
-->
<div class="drop-cnt">
<a href="https://public.tenant.kiwitcms.org">Explore latest version</a>
<a href="/#subscriptions">Explore subscriptions</a>
<a href="https://kiwitcms.readthedocs.io/en/latest/installing_docker.html">Run as Docker container</a>
<a href="https://github.com/marketplace/kiwi-tcms/">Integration with GitHub</a>
</div>
</div>
</li>
</ul>
</nav>
<!-- content -->
<header>
<div class="lead">
<h1>The leading open source test management system</h1>
<ul>
<li>For manual & automated testing</li>
<li>Internal + external bug trackers</li>
<li>Plugable architecture</li>
<li>Versatile API layer</li>
<li>Made by testers</li>
</ul>
<div class="drop-btn" id="lead-drop" onmouseenter="toggle('lead-drop','drop-down');" onmouseleave="toggle('lead-drop','drop-down');">
<div class="btn big-btn" icon>Get Started <i></i></div>
<!-- WARNING: this menu needs to be copied everywhere where we have this
button b/c Pelican doesn't support includes from HTML content files:
https://github.com/getpelican/pelican/issues/2783
-->
<div class="drop-cnt">
<a href="https://public.tenant.kiwitcms.org">Explore latest version</a>
<a href="/#subscriptions">Explore subscriptions</a>
<a href="https://kiwitcms.readthedocs.io/en/latest/installing_docker.html">Run as Docker container</a>
<a href="https://github.com/marketplace/kiwi-tcms/">Integration with GitHub</a>
</div>
</div>
</div>
<div class="video">
<div class="backplate"></div>
<!-- width="700" height="400" -->
<img onclick="showVideo('n0wAAyISxLs')" src="/theme/images/pc_with_test_run_small.png" alt="Kiwi TCMS Demonstration">
<a href="https://www.youtube.com/channel/UCC0KsZRFkF8nhPnES8G-KYw/videos" target="_blank" class="btn border-btn" icon>Check all videos <i></i>
</a>
</div>
</header>
<section id="features">
<div class="feature-list">
<div>
<h3>Manual testing</h3>
<p>
Use the dashboard to see pending work. Execute tests, mark results and report bugs.
</p>
</div>
<div>
<h3>Automated testing</h3>
<p>
Use
<a href="https://kiwitcms.readthedocs.io/en/latest/plugins/automation-frameworks.html">Kiwi TCMS plugins</a>
for popular testing frameworks to collect automation results!
</p>
</div>
<div>
<h3>Test management</h3>
<p>
Create test plans and cases, track progress and assign work across multiple teams.
</p>
</div>
<div>
<h3>Testing telemetry</h3>
<p>
Instant insight into testing. Vital info for planning and status reports
before release!
</p>
</div>
<div>
<h3>Integration</h3>
<p>
<a href="https://kiwitcms.readthedocs.io/en/latest/modules/tcms.issuetracker.html#module-tcms.issuetracker">
1-click bug reporting
</a> with 3rd party bug trackers.
Additional integration via
<a href="https://github.com/kiwitcms/github-app/">GitHub App</a>.
</p>
</div>
<div>
<h3>External API</h3>
<p>
Provides full access so you can get creative. Available via JSON-RPC and XML-RPC.
</p>
</div>
<div>
<h3>Container first</h3>
<p>
Over 2,000,000 downloads via <a href="https://hub.docker.com/r/kiwitcms/kiwi/">Docker Hub</a>.
Check-out the <a href="https://hub.docker.com/v2/repositories/kiwitcms/kiwi/">raw data</a> or
anonymous <a href="https://plausible.io/kiwitcms-container">container use stats</a>.
</p>
</div>
<div>
<h3>Paid support</h3>
<p>
Opt-in for a <a href="#subscriptions">subscription</a> if
you don't want to DIY your testing infrastructure.
</p>
</div>
<a href="/features/" class="btn border-btn" icon>Check all features <i></i></a>
</div>
</section>
<section id="mission">
<p>
Our mission is to transform the testing process
by making it more organized, transparent & accountable
for everyone on your team; to improve engineering
productivity and participation in testing.
</p>
</section>
<section id="quick-links">
<a href="http://kiwitcms.readthedocs.io/en/latest/installing_docker.html">
<div>
<i class="las la-cloud-download-alt"></i>
<h3>Get Started</h3>
<p>
Learn how to deploy a production Kiwi TCMS instance as a Docker container.
</p>
</div>
</a>
<a href="http://kiwitcms.readthedocs.io">
<div>
<i class="las la-book"></i>
<h3>Documentation</h3>
<p>
We strive to keep Kiwi TCMS well documented. Everything you need
to know is here.
</p>
</div>
</a>
<a href="/community/">
<div>
<i class="las la-users"></i>
<h3>Community</h3>
<p>Ask for help, translate into local languages, hack code and help us improve Kiwi TCMS!</p>
</div>
</a>
<a href="/support/">
<div>
<i class="las la-headset"></i>
<h3>Support</h3>
<p>
Engagement rules and working hours for community & commercial support.
</p>
</div>
</a>
</section>
<section id="pricing">
<h1 id="subscriptions">Subscription plans</h1>
<div class="plan">
<h3>Self Support</h3>
<ul class="caret">
<li>
Self-hosted on your server
</li>
<li>
Tagged releases from <a href="/containers/">kiwitcms/version</a>
<i class="las la-lock" title="Read-only access to private repository"></i>
</li>
<li>
<code>aarch64</code> and <code>x86_64</code> builds
</li>
<li>
Limited <a href="/support/">support</a>
<br>
<sub>
only for account & billing issues
</sub>
</li>
<li>
No technical support
</li>
<li>
No ads
</li>
</ul>
<a href="https://mrsenko.onfastspring.com/kiwitcms-self-support" data-fsc-item-path-value="kiwitcms-self-support" data-fsc-action="Add, Checkout">
Subscribe for 15 $/mo
</a>
</div>
<div class="plan prefered">
<h3>Private Tenant</h3>
<ul class="caret">
<li class="first">
All items from <i>Self Support</i>
</li>
<li>
1x SaaS hosting under
<code>https://*.tenant.kiwitcms.org</code>
</li>
<li>
Unlimited users
</li>
<li>
Control of authorized users
</li>
<li>
No User account admin
</li>
<li>
Limited Group admin,
<a href="https://kiwitcms.readthedocs.io/en/latest/admin.html#tenant-groups">see docs</a>
</li>
<li>
Extra <a href="https://github.com/marketplace/kiwi-tcms">GitHub integration</a>
</li>
<li>
Always the latest version
</li>
<li>
10-16 UTC/Mon-Fri <a href="/support/">support</a>
<br>
<sub>
including technical issues
</sub>
</li>
<li>
Email response within 72 hrs
</li>
<li>
Support language: English
</li>
</ul>
<a href="https://mrsenko.onfastspring.com/kiwitcms-private-tenant" data-fsc-item-path-value="kiwitcms-private-tenant" data-fsc-action="Add, Checkout">
Subscribe for 50 $/mo
</a>
</div>
<div class="plan prefered">
<h3>Enterprise Subscription</h3>
<ul class="caret">
<li class="first">
All items from <i>Private Tenant</i>
</li>
<li>
On-premises inside your VPN
</li>
<li>
Tagged releases from <a href="/containers/">kiwitcms/enterprise</a>
<i class="las la-lock" title="Read-only access to private repository"></i>
</li>
<li>
<code>aarch64</code> and <code>x86_64</code> builds
</li>
<li>
Unlimited tenants
</li>
<li>
Full Admin panel access
</li>
<li>
Based on
<a href="https://catalog.redhat.com/software/containers/ubi9-minimal/61832888c0d15aff4912fe0d">Red Hat UBI 9</a>
</li>
<li>
OAuth, kerberos, LDAP
authentication backends
</li>
<li>
SMTP and Amazon SES email
</li>
<li>
Versioned static files for CDN
</li>
<li>
Extra <a href="https://github.com/kiwitcms/enterprise#kiwi-tcms-enterprise-edition">add-ons</a>
</li>
<li>
08-20 UTC/Mon-Fri <a href="/support/">support</a>
</li>
<li>
Email response within 24 hrs
</li>
</ul>
<a href="https://mrsenko.onfastspring.com/kiwitcms-enterprise-subscription" data-fsc-item-path-value="kiwitcms-enterprise-subscription" data-fsc-action="Add, Checkout">
Subscribe for 400 $/mo
</a>
</div>
<div class="plan">
<h3>Managed Hosting</h3>
<ul class="caret">
<li class="first">
All items from <i>Enterprise Subscription</i>
</li>
<li>
1x Kiwi TCMS hosted in AWS
<!--
<br>
<sub>
on Red Hat Enterprise Linux (soon ...)
</sub>
-->
</li>
<li>
Fully isolated instance
<br>
<sub>
unlimited disk storage
</sub>
</li>
<li>
Load balanced deployment
<br>
<sub>
coming soon ...
</sub>
</li>
<li>
Email delivery via Amazon SES
</li>
<li>
DNS & SSL management
</li>
<li>
Full application admin via web
<br>
<sub>
no web login from Kiwi TCMS staff;
</sub>
<br>
<sub>
all data considered confidential
</sub>
</li>
<li>
Can override app/host settings
<br>
<sub>
limitations may apply
</sub>
</li>
<li>
TCMS upgrade upon request
</li>
<li>
Regular security updates
</li>
<!--
<li>
Security certifications via NDA
</li>
-->
<li>
Access to encrypted backups
<br>
<sub>
retention period per agreement
</sub>
</li>
<li>
Access to monitoring tools
<br>
<sub>
coming soon ...
</sub>
</li>
<li>
07-22 UTC/Mon-Sun <a href="/support/">support</a>
</li>
<li>
Video support upon request
</li>
<li>
<a href="https://mrsenko.onfastspring.com/additional-services-for-kiwi-tcms" data-fsc-item-path-value="additional-services-for-kiwi-tcms" data-fsc-action="Add, Checkout">
Additional services
</a> - 100 $/hr!
</li>
</ul>
<em>
<a style="float: right" href="/blog/kiwi-tcms-team/2024/10/16/managed-hosting-subscription-explained/">... read more about managed hosting</a>
</em>
<a href="https://mrsenko.onfastspring.com/kiwitcms-managed-hosting" data-fsc-item-path-value="kiwitcms-managed-hosting" data-fsc-action="Add, Checkout">
Subscribe for 1500 $/mo
</a>
</div>
<div class="plans-modal">
The <i>"free as in beer"</i> version of Kiwi TCMS is available via
<code>docker pull kiwitcms/kiwi</code>.
This repository does not provide version tags!
Only <code>x86_64</code> builds are available!
</div>
<div class="plans-modal" id="plans-modal">
<h3 onclick="toggle('plans-modal', 'show-modal')">Additional information about Kiwi TCMS subscriptions</h3>
<div>
<ul class="caret">
<li>
With an active subscription there are no license or upgrade fees,
per-incident support fees, or user access fees. It's a flat rate!
</li>
<li>
A subscription provides access to software versions and certain
level of guarantees behind the components which constitute Kiwi TCMS
</li>
<li>
An active subscription ensures a sustainable future for all open source software
maintained by the Kiwi TCMS team
</li>
<li>
Subscriptions cover
<a href="https://github.com/kiwitcms/Kiwi/">Kiwi TCMS</a>,
<a href="https://github.com/kiwitcms/enterprise/">Kiwi TCMS Enterprise</a> and
all add-ons published under
<a href="https://github.com/kiwitcms">https://github.com/kiwitcms/</a>
</li>
<li>
Subscriptions include limited coverage for third-party open source
components to ensure Kiwi TCMS is not affected by issues on
their side
</li>
<li>
You will be charged automatically each month. You may cancel
at any time if you are not happy with the service provided
</li>
<li>
Cancelled subscriptions remain active until the period they have been paid for -
usually 1 month after the last billing transaction
</li>
<li>
After a subscription has been cancelled you can still continue using Kiwi TCMS
according to its open source licensing terms
</li>
<li>
Dedicated support is independent of hosting! You may chose a Private Tenant subscription
and still decide to host Kiwi TCMS internally
</li>
<li>
We recommend that customers have an active subscription for each container running
Kiwi TCMS. Check out our
<a href="/blog/kiwi-tcms-team/2021/11/01/kiwi-tcms-subscription-guidelines/">
subscription gudelines
</a>
for more info
</li>
<li>
Use add-on services for anything which isn't a support question, a bug,
a feature request or related to managed hosting
</li>
<li>
If it's not a system or repository that we control then it needs additional services.
Don't hesitate to <a href="/support/">talk to us</a>!
</li>
</ul>
</div>
</div>
</section>
<section id="screens">
<h1>
See it in action
<span>
<i id="prev" class="las la-angle-left"></i><i id="next" class="las la-angle-right"></i>
</span>
</h1>
<div class="slider screens-slider">
<div>
<img class="shown" src="images/screenshots/001_central_dashboard.png">
<h3 id="heading">Central dashboard to start your day</h3>
<p id="subtitle">
See all of your test executions and test plans in one place
</p>
</div>
</div>
</section>
<section id="testimonials">
<blockquote>
<i class="las la-quote-left"></i>
<p>
If you're a test and QA engineer, Kiwi TCMS is a gem open source TCMS
for your team. IEEE 829 compatible, free and open source, great folks
behind the project.
</p>
<p class="author">
<span>Marko Kažić</span> CEO, Zamphyr
</p>
</blockquote>
<blockquote>
<i class="las la-quote-left"></i>
<p>
We're using Kiwi TCMS to organize all of our testing.
It is used by our QA team to document test scenarios and provide
peer review to other test engineers.
</p>
<p class="author">
<span>Maxim Krizhanovsky</span> VP Engineering, Tradeo
</p>
</blockquote>
<blockquote>
<i class="las la-quote-left"></i>
<p>
Kiwi TCMS provided us with an application which solved our pain
about building, maintaining and running manual regression tests.
</p>
<p class="author">
<span>Primož Klemen</span> QA tester, Better
</p>
</blockquote>
<blockquote>
<i class="las la-quote-left"></i>
<p>
We created our own Kiwi TCMS image and
pushed it to a private AWS Elastic Container Registry
as we wanted to configure Amazon SES as the email backend.
</p>
<p class="author">
<span>Harley Thorne</span> DevOps, BookingLive
</p>
</blockquote>
<blockquote>
<i class="las la-quote-left"></i>
<p>
Adoption of Kiwi TCMS has been an essential part of our process
and quality improvements. It is an important component of our
planned improvements.
</p>
<p class="author">
<span>Ron Feldman</span> QA Engineer, Message Broadcast
</p>
</blockquote>
<blockquote>
<i class="las la-quote-left"></i>
<p>
Kiwi TCMS has proven to be invaluable for dev teams lacking resources to
finance an entire tech stack.
Thank you for continuing to offer & maintain this product.
</p>
<p class="author">
<span>Adam Palmquist</span> Full Stack QA, Neurotech LLC
</p>
</blockquote>
<blockquote>
<i class="las la-quote-left"></i>
<p>
Kiwi TCMS bridges the gap between security requirements and software development.
It helps teams to improve the quality and security of their software.
</p>
<p class="author">
<span>Malcolm Shore</span> Cybersecurity Consultant, OffSec
</p>
</blockquote>
<blockquote>
<i class="las la-quote-left"></i>
<p>
We use Kiwi TCMS as part of POWDER, a large testbed environment, to collect test results.
It fills a key function for us and we're grateful for the work of the Kiwi TCMS team.
</p>
<p class="author">
<span>David Johnson</span> Research staff, University of Utah
</p>
</blockquote>
</section>
<section id="trusted-by">
<h1>Trusted by</h1>
<a href="/blog/kiwi-tcms-team/2019/07/05/contributor-profile-primoz-klemen/" iclink>
<img src="/images/customers/better.png" alt="Better care" title="Better care">
</a>
<a target="_blank" href="https://www.bookinglive.com/kiwi-tcms-into-aws" iclink>
<img src="/images/customers/bookinglive.png" alt="BookingLive" title="BookingLive">
</a>
<a target="_blank" href="https://doc.e.foundation/testers#test-session-with-kiwi" iclink>
<img src="/images/customers/e_foundation.png" alt="/e/ Foundation" title="/e/ Foundation">
</a>
<img src="/images/customers/minds.png" alt="Minds.com" title="Minds.com Social Network">
<img src="/images/customers/musala.png" alt="Musala Soft" title="Musala Soft">
<a target="_blank" href="/blog/malcolm-shore/2023/07/18/offsec-has-chosen-kiwi-tcms/" iclink>
<img src="/images/customers/offsec.png" alt="OffSec" title="OffSec">
</a>
<img src="/images/customers/phplist.png" alt="phpList" title="phpList - free newsletter software">
<a onclick="showVideo('Wob_L_SrEwE')" icvideo>
<img src="/images/customers/qgis.png" alt="QGIS" title="QGIS - a free and open source geographic information system">
</a>
<a href="/blog/kiwi-tcms-team/2020/10/18/sedc-academy-for-software-testing-is-running-kiwi-tcms/" iclink>
<img src="/images/customers/sedc.png" alt="Seavus Education and Development Center" title="Seavus Education and Development Center">
</a>
<a target="_blank" href="https://technowise.medium.com/hosting-kiwi-tcms-in-our-ecs-cluster-with-rds-2bec6b6a7d6f" iclink>
<img src="/images/customers/sequoia.png" alt="Sequoia" title="Sequoia">
</a>
<a href="/blog/kiwi-tcms-team/2023/08/16/the-university-of-utah-uses-kiwi-tcms/" iclink>
<img src="/images/customers/university_of_utah.png" alt="The University of Utah" title="The University of Utah">
</a>
<img src="/images/customers/zamphyr.png" alt="Zamphyr" title="Zamphyr - free and common school of technology">
</section>
<section id="seen-at">
<h1>Seen at</h1>
<img src="/images/conf/bws.png" alt="Bulgaria Web Summit" title="Bulgaria web summit">
<img src="/images/conf/oscal.png" alt="Open Source Conference Albania" title="Open Source Conference Albania">
<a onclick="showVideo('JMEeviPUl04')" icvideo>
<img src="/images/conf/pyconcz.png" alt="PyCon CZ" title="PyCon CZ">
</a>
<a onclick="showVideo('r5sp0e7LsDc')" icvideo>
<img src="/images/conf/hackconf.png" alt="HackConf Sofia" title="HackConf Sofia">
</a>
<a onclick="showVideo('sSJVstoGoG0')" icvideo>
<img src="/images/conf/piterpy.png" alt="PiterPy" title="PiterPy">
</a>
<a onclick="showVideo('oATPURei6eQ')" icvideo>
<img src="/images/conf/openfest.png" alt="Open Fest Sofia" title="Open Fest Sofia">
</a>
<a onclick="showVideo('9kOnf5YXquA')" icvideo>
<img src="/images/conf/fosdem.png" alt="FOSDEM Brussels" title="FOSDEM Brussels">
</a>
<a onclick="showVideo('8neSwklzs7g')" icvideo>
<img src="/images/conf/openexpo.png" alt="OpenExpo" title="OpenExpo">
</a>
<img src="/images/conf/dev.bg.png" alt="Dev.bg community" title="Dev.bg community">
<img src="/images/conf/pyconblkn19.png" alt="PyCon Balkan, Belgrade" title="PyCon Balkan, Belgrade">
<a onclick="showVideo('lWX4fQrSVVg')" icvideo>
<img src="/images/conf/hackconf19.png" alt="HackConf Sofia" title="HackConf Sofia">
</a>
<img src="/images/conf/testcon.png" alt="TestCon Vilnius" title="TestCon Vilnius">
<a onclick="showVideo('p8N-xr72sD0')" icvideo>
<img src="/images/conf/testwarez19.png" alt="TestWarez Poland" title="TestWarez Poland">
</a>
<img src="/images/conf/qachallenge.png" alt="QA: Challenge Accepted" title="QA: Challenge Accepted">
<img src="/images/conf/fossasia.png" alt="FOSS ASIA Open Tech Summit" title="FOSS ASIA Open Tech Summit">
<img src="/images/conf/testinguy.png" alt="Testing Uruguay" title="Testing Uruguay">
<img src="/images/conf/wetest_athens.png" alt="WeTest.Athens" title="WeTest.Athens">
<img src="/images/conf/tad_nl_2023.png" alt="Test Automation Days 2023, Rotterdam" title="Test Automation Days 2023, Rotterdam">
<a onclick="showVideo('yIyhkcJ8How')" icvideo>
<img src="/images/conf/websummit/alpha_startup_badge_bw.png" alt="WebSummit 2021" title="WebSummit 2021">
</a>
<a target="_blank" href="https://een.ec.europa.eu/partners/bulgarian-it-vendor-offers-specialized-open-source-product-quality-assurance-and-test" iclink>
<img src="/images/conf/een.png" alt="Enterprise Europe Network" title="Enterprise Europe Network">
</a>
<img src="/images/conf/StartupGrind22.png" alt="StartupGrind 2022" title="StartupGrind 2022">
<img src="/images/conf/collision/badge_2022.png" alt="Collision 2022" title="Collision 2022">
<img src="/images/conf/pycon_mea_dubai.png" alt="Pycon MEA, Dubai" title="Pycon MEA, Dubai">
<img src="/images/conf/qa_and_test_bilbao.png" alt="QA&TEST Embedded, Bilbao" title="QA&TEST Embedded, Bilbao">
</section>
<section id="awards">
<h1>Awards</h1>
<a onclick="showVideo('7AuZp3nVIkc')" icvideo>
<img src="/images/conf/openawards19.png" alt="OpenAwards" title="OpenAwards">
</a>
<a href="/blog/kiwi-tcms-team/2020/03/27/kiwi-tcms-is-open-source-seed-award-winner/" iclink>
<img style="background-color: inherit" src="/images/conf/mozilla_award.png" alt="Mozilla Open Source Seed Award winner" title="Mozilla Open Source Seed Award winner">
</a>
<a href="/blog/kiwi-tcms-team/2020/09/01/kiwi-tcms-is-a-finalist-in-the-2020-eu-web-awards/" iclink>
<img style="background-color: inherit" src="/images/conf/eu_web_awards_2020_finalist.png" alt=".eu Web Awards 2020 finalist" title=".eu Web Awards 2020 finalist">
</a>
<a href="/blog/kiwi-tcms-team/2020/12/26/excellence-in-innovation-2020-award-for-kiwi-tcms/" iclink>
<img style="background-color: inherit" src="/images/conf/excellence_innovation_2020_bw.png" alt="Excallence in Innovation award" title="Excellence in Innovation award">
</a>
<a href="/blog/kiwi-tcms-team/2022/06/27/mejor-sitio-web-2022/" iclink>
<img style="background-color: inherit" src="/images/conf/reviewbox-award-2022.png" alt="Reviewbox award" title="Reviewbox award">
</a>
</section>
<section id="cta">
<h1>Are you ready to transform your testing?</h1>
<h3>Start using Kiwi TCMS today.</h3>
<div class="drop-btn" id="footer-drop" onmouseenter="toggle('footer-drop','drop-down');" onmouseleave="toggle('footer-drop','drop-down');">
<div class="btn border-btn" icon>Get Started <i></i></div>
<!-- WARNING: this menu needs to be copied everywhere where we have this
button b/c Pelican doesn't support includes from HTML content files:
https://github.com/getpelican/pelican/issues/2783
-->
<div class="drop-cnt">
<a href="https://public.tenant.kiwitcms.org">Explore latest version</a>
<a href="/#subscriptions">Explore subscriptions</a>
<a href="https://kiwitcms.readthedocs.io/en/latest/installing_docker.html">Run as Docker container</a>
<a href="https://github.com/marketplace/kiwi-tcms/">Integration with GitHub</a>
</div>
</div>
</section>
<aside id="vp-overlay" onclick="hideVideo()">
<i class="las la-times" title="Close" onclick="hideVideo()"></i>
<iframe id="vp-frame" src="https://www.youtube.com/embed/n0wAAyISxLs?hd=1&enablejsapi=1" autoplay="true" frameborder="0" width="1120" height="700" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen>
</iframe>
</aside>
<footer>
<img src="/theme/images/Kiwi-TCMS-logo-footer.svg" alt="">
<div class="legal">
<p>Kiwi TCMS is collecting donations via <a href="https://opencollective.com/kiwitcms">Open Collective</a>.</p>
<p>Except where otherwise noted, content on this site is licensed under a
<a href="https://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International license.</a>
</p>
<p>
<a href="/legal/">Legal</a> |
<a href="/privacy/">Privacy</a> |
<a href="/terms/">Terms</a></p>
</div>
<div class="footer-block fl-gh">
<i></i>
<h3>Contribute</h3>
<a href="https://github.com/kiwitcms/Kiwi">/kiwitcms</a>
</div>
<div class="footer-block fl-tw">
<i></i>
<h3>Follow</h3>
<a href="https://twitter.com/KiwiTCMS">@KiwiTCMS</a>
</div>
<div class="footer-block fl-yt">
<i></i>
<h3>Watch</h3>
<a href="https://www.youtube.com/channel/UCC0KsZRFkF8nhPnES8G-KYw/videos">Kiwi TCMS</a>
</div>
<div class="footer-block fl-fb">
<i></i>
<h3>Join</h3>
<a href="https://www.reddit.com/r/KiwiTCMS/">r/KiwiTCMS</a>
</div>
<div class="footer-block mail">
<i></i>
<h3>Join our newsletter.</h3>
<p>Project news only, GDPR compliant.</p>
<a href="https://kiwitcms.us17.list-manage.com/subscribe/post?u=9b57a21155a3b7c655ae8f922&id=c970a37581" class="btn ghost-btn">Sign me up</a>
</div>
</footer>
<script type="text/javascript" src="/theme/scripts/toggle.js"></script>
<script src="https://www.youtube.com/iframe_api"></script>
<script src="scripts/video.js"></script>
<script src="scripts/img-gallery-handler.js"></script>
</body>
</html>