forked from cypht-org/cypht-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
how-to-join.html
132 lines (126 loc) · 6.42 KB
/
how-to-join.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
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>How to join</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="img/icon.ico">
<link rel="stylesheet" href="site.css">
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg navbar-dark fixed-top">
<div class="container">
<a class="navbar-brand" href="index.html">
<img src="img/logo.svg" width="120" height="60" alt="">
</a>
<button class="navbar-toggler toggler-home" type="button" data-toggle="collapse"
data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse " id="navbarSupportedContent">
<ul class="navbar-nav ml-lg-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home <span class="sr-only">(current)</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="features.html">Features</a>
</li>
<li class="nav-item">
<a class="nav-link" href="security.html">Security</a>
</li>
<li class="nav-item">
<a class="nav-link" href="modules.html">Mods</a>
</li>
<li class="nav-item">
<a class="nav-link" href="license.html">License</a>
</li>
<li class="nav-item">
<!--<a class="nav-link" href="tests.html">Test</a>-->
</li>
<li class="nav-item">
<a class="nav-link" href="documentation.html">Documentation</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://unencumberedbyfacts.com" target="_blank">Blog</a>
</li>
<li class="nav-item">
<a onclick="document.getElementsByClassName('navbar-collapse')[0].style.display='none';"
class="nav-link" href="contribute.html">Contribute</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<section class="contibute-section container">
<div class="container">
<h1>Getting Started with Cypht Community</h1>
<h2>Introduction</h2>
<p>
Welcome to the Cypht community! We are excited to have you join us and become a part of our mission to
develop and improve Cypht. This documentation is designed to help you get started with our community,
understand the development process, and contribute effectively to the project.
</p>
<h2>About the Cypht Community</h2>
<h3 class="h3">What is Cypht?</h3>
<p>
Cypht is an open-source email client and news aggregator with a modular design. Unlike traditional
applications, Cypht is built entirely from plugins, or "module sets," with the core modules being
essential. Users can customize their experience by adding or replacing modules to suit specific site
requirements. This modular approach offers flexibility and easy customization, although it may introduce
complexity.
</p>
<h3 class="h3">Our Values</h3>
<p>
As a community, we prioritize collaboration, inclusivity, and transparency. We encourage respect for
others and open communication. Our goal is to create a welcoming environment for all developers,
regardless of experience levels.
</p>
<h2>Joining the Community</h2>
<h3 class="h3">Getting Involved</h3>
<p>
To start your journey with the Cypht community,
Connect with us on <a href="https://gitter.im/cypht-org/community">gitter.</a>
</p>
<h2>Setting up Your Development Environment</h2>
<h3 class="h3">Tools and Software</h3>
<div>
<p>
Before you can contribute to Cypht, you need to set up your development environment. You will need
the
following tools and software:
</p>
<ul>
<li>A code editor of your choice (e.g., VSCode, Sublime Text)</li>
<li>Git for version control</li>
<li>PHP for developing Cypht</li>
<li>A web server (e.g., Apache, Nginx) for testing</li>
</ul>
</div>
<h3 class="h3">Configuration and Setup</h3>
<p>For installation, configuration, and setup, please check the <a href="install.html">installation
page</a></p>
<h3 class="h3">Contributing to Cypht</h3>
<p>When contributing to Cypht, follow these <a href="contribute.html">practices</a></p>
<h3 class="h3">Community Resources</h3>
<p>For more information and resources, explore the following:</p>
<ul>
<li><a href="documentation.html">Official Cypht Documentation</a></li>
<li><a href="features.html">Major features</a></li>
<li><a href="contribute.html">How to contribute</a></li>
</ul>
<p>
Don't hesitate to ask for help or guidance. We have experienced community members who are willing to mentor
and support newcomers. Feel free to reach out on <a href="https://gitter.im/cypht-org/community">Gitter.</a>
</p>
</div>
</section>
<script src="jquery.slim.min.js"></script>
<script src="bootstrap.bundle.min.js"></script>
</body>
</html>