-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeveloper-guide.html
More file actions
45 lines (36 loc) · 1.98 KB
/
developer-guide.html
File metadata and controls
45 lines (36 loc) · 1.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Network Analysis and Data Integration (NADI) System</title>
<link rel="stylesheet" href="proj-root.css">
</head>
<body>
<header>
<image src="./logo.svg" height="100px" />
<h1>Network Analysis and Data Integration (NADI) System</h1>
</header>
<nav>
<a href="/index.html">Home</a>
<a href="/publications.html">Publications</a>
<a href="/user-guide.html">User Manual</a>
<a href="/developer-guide.html">Developer Guide</a>
<a href="/api-reference.html">API Reference</a>
<a href="/tutorials.html">Tutorials</a>
</nav>
<!-- the content only changes from here below -->
<div class="container">
<p>There are two kinds of developers in NADI:
core developers and plugin developers. Core developers develop the core functionality of the NADI that will improve it and add more functions. While plugin developer can extend the available functions in NADI DSL. You can choose to share that plugin with other users for them to benefit from the effort.</p>
<p>For the core developers, refer to the repository of interest in GitHub for instructions on contributions, forking, and other details. While plugin developers can refer to the API references for how to use the datatypes in the NADI library to write a good plugin.</p>
<p>The github repositories consisting of source codes:</p>
<div class="table-wrapper"><table><thead><tr><th>Repo</th><th>Tool</th></tr></thead><tbody>
<tr><td><a href="https://github.com/Nadi-System/nadi-gis">nadi-gis</a></td><td>Nadi GIS</td></tr>
<tr><td><a href="https://github.com/Nadi-System/nadi-system">nadi-system</a></td><td>Nadi CLI/ IDE/ Core</td></tr>
<tr><td><a href="https://github.com/Nadi-System/nadi-plugins-rust">nadi-plugins-rust</a></td><td>Sample Plugins</td></tr>
<tr><td><a href="https://github.com/Nadi-System/nadi-book">nadi-book</a></td><td>Source for this NADI Book</td></tr>
</tbody></table>
</div>
</div>
</body>
</html>