-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
116 lines (113 loc) · 5.76 KB
/
Copy pathindex.html
File metadata and controls
116 lines (113 loc) · 5.76 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
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="" />
<meta name="author" content="Maxim Sokhatsky" />
<title>EXO</title>
<link rel="stylesheet" href="priv/static/css/blank.css" />
<link rel="stylesheet" href="priv/static/css/forms.css" />
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="https://crm.erp.uno/img/apple-touch-icon-57x57.png?v=2.6.30" />
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://crm.erp.uno/img/apple-touch-icon-114x114.png?v=2.6.30" />
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://crm.erp.uno/img/apple-touch-icon-72x72.png?v=2.6.30" />
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://crm.erp.uno/img/apple-touch-icon-144x144.png?v=2.6.30" />
<link rel="apple-touch-icon-precomposed" sizes="60x60" href="https://crm.erp.uno/img/apple-touch-icon-60x60.png?v=2.6.30" />
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="https://crm.erp.uno/img/apple-touch-icon-120x120.png?v=2.6.30" />
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="https://crm.erp.uno/img/apple-touch-icon-76x76.png?v=2.6.30" />
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="https://crm.erp.uno/img/apple-touch-icon-152x152.png?v=2.6.30" />
<link rel="icon" type="image/png" href="https://crm.erp.uno/img/favicon-196x196.png?v=2.6.30" sizes="196x196" />
<link rel="icon" type="image/png" href="https://crm.erp.uno/img/favicon-96x96.png?v=2.6.30" sizes="96x96" />
<link rel="icon" type="image/png" href="https://crm.erp.uno/img/favicon-32x32.png?v=2.6.30" sizes="32x32" />
<link rel="icon" type="image/png" href="https://crm.erp.uno/img/favicon-16x16.png?v=2.6.30" sizes="16x16" />
<link rel="icon" type="image/png" href="https://crm.erp.uno/img/favicon-128.png?v=2.6.30" sizes="128x128" />
</head>
<body>
<nav>
<a href='https://erp.uno'>ERP</a>
<a href='#' style="background:#ededed;">EXO</a>
<a href='http://localhost:8004/app/login.htm'>APPLICATION</a>
</nav>
<header>
<a href="https://github.com/erpuno/exo"><img src="https://n2o.dev/img/1F3E6.svg" /></a>
<h1>EXO</h1>
</header>
<aside>
<article>
<section>
<h3>SYNOPSIS</h3>
<div>
EXO (EXOSCULAT, Latin for calculation) is an automated system for tracking provided services, their tariffication, and billing. EXO is a universal manager of client accounts containing the history of tariffed transactions. Accounts are controlled by BPMN processes whose activities are defined by Erlang functions. EXO, as an example of <a href="https://erp.uno">ERP.UNO</a>, can be used as a prototype for building billing systems, banks, and other accounting systems.
</div>
</section>
<section>
<h3>ARTICLE</h3>
<div>
<ul>
<li><a href="http://localhost:8004/app/index.htm">HOW TO WRITE WEBSITES FOR WARTIME</a></li>
</ul>
</div>
<br />
<div>
NOV 2022 © Namdak Tonpa <a href="https://5HT.co/license/">DHARMA</a> <br />
VER 0.11.1
</div>
</section>
</article>
</aside>
<main>
<section>
<a name="intro"></a>
<h3>INTRODUCTION</h3>
<p>BPE business processes define the infrastructure for orchestrating enterprise production processes according to the BPMN standard, as well as systems based on declarative rules. BPE transactionally stores all business process steps in the modern KVS data system based on RocksDB.</p>
<figure><code>
$ git clone git@github.com:erpuno/exo
$ cd exo
$ mix deps.get
$ iex -S mix
> EXO.boot
$ open http://localhost:8004/app/index.htm
</code></figure>
</section>
<section>
<h3>PURPOSE</h3>
<p>This is an educational training example for interns, used to acquire system programming skills with N2O.DEV libraries.</p>
</section>
<section>
<h3>AUTHENTICATION</h3>
<p>The authentication and authorization page, along with system sessions, is an important part of every ERP system. The example shows a PLAIN password HTML form.</p>
<figure>
<img src="priv/static/img/users.png">
<figcaption>Picture 1. Users Page View.</figcaption>
</figure>
</section>
<section>
<h3>PROCESSES</h3>
<p>A page listing BPE processes of the ERP system and a form for creating them.</p>
<figure>
<img src="priv/static/img/processes.png">
<figcaption>Picture 2. BPE Business Processes List.</figcaption>
</figure>
</section>
<section>
<h3>TRANSACTIONS</h3>
<p>The step history page of a BPE business process.</p>
<figure>
<img src="priv/static/img/process-instance.png">
<figcaption>Picture 3. BPE Process Instance Transaction Steps.</figcaption>
</figure>
</section>
<section>
<h3>FORMS</h3>
<p>The page listing all forms of the ERP system.</p>
<figure>
<img src="priv/static/img/forms.png">
<figcaption>Picture 4. ERP Forms Registry List.</figcaption>
</figure>
</section>
</main>
<footer>
Made with love <span class="heart">❤</span> for BPE
</footer>
</body>
</html>