This repository has been archived by the owner on Oct 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
107 lines (94 loc) · 4.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="favicon.ico" sizes="16x16">
<title>Moriana</title>
<link rel="stylesheet" href="bootstrap.min.css">
<link rel="stylesheet" href="styles.css">
<meta name="google-site-verification" content="_o1NSezRKCWA8VKG7xP8JU9EXm2dPibOZlG9GyfQmKw" />
</head>
<body>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-96120393-1', 'auto');
ga('send', 'pageview');
</script>
<div class="container">
<div class="heading">
<img class="logo" src="logo.png">
<p class="lead">
Web-based software for healthcare supply chain management. Designed for facilites with low network availability. Free and Open Source.
</p>
<a class="button btn btn-default" target="_blank" href="https://github.com/kdoran/moriana">View project on github</a>
<!-- <hr> -->
<h1 class="title">Features</h1>
</div>
<div class="features">
<div>
<h2>Shipments</h2>
<hr>
<p class="lead">
Receive and transfer stock between suppliers, facilities, and patients.
</p>
<img class="img-thumbnail" src="transfering.gif" />
</div>
<hr>
<div>
<h2>Inventory</h2>
<hr>
<p class="lead">
Manage stock levels at the item batch level, monitoring average monthly consumption, expiring items, and out of stock. Transfer and dispense FEFO.
</p>
<img class="img-thumbnail" src="stock.gif" />
</div>
<div>
<h2>Offline</h2>
<hr>
<p class="lead">
Work offline or online, with the same application deployed across servers and laptops. If an offline-enabled user losses internet, work can continue locally until connectivity is restored, syncing automatically.
</p>
<img class="img-thumbnail" src="offline.gif" />
</div>
<div>
<h2>Roles</h2>
<hr>
<p class="lead">
Create individual databases for each facility, transferring stock between & managing staff access on a per-location basis. Staff working offline synchronize only the facilities and data they need.
</p>
<img class="img-thumbnail" src="access.gif" />
</div>
<div>
<h2>Technology</h2>
<hr>
<p class="lead">
Moriana is built on top of The Apache Software Foundation's CouchDB, an open source database supported by engineering teams at IBM, Apache and Cloudera.
</p>
</div>
<div class="links">
<h2>More Info</h2>
<hr>
<div class="text-center">
<a class="button btn btn-default" target="_blank" href="https://github.com/kdoran/moriana">Source Code</a>
<a class="button btn btn-default" target="_blank" href="https://github.com/kdoran/moriana/blob/master/docs/ubuntu-deployment.md">Deploying a server</a>
<a class="button btn btn-default" target="_blank" href="https://github.com/kdoran/moriana/blob/master/docs/development-setup.md">Development Setup</a>
<a class="button btn btn-default" target="_blank" href="https://github.com/kdoran/moriana/issues">Submit an issue</a>
<a class="button btn btn-default" href="mailto:[email protected]">Contact</a>
<br><br><br>
</div>
</div>
</div>
<div class="footer text-center">
Copyright ©
<span id="copyright"><script>document.getElementById('copyright').appendChild(document.createTextNode(new Date().getFullYear()))</script></span>
Moriana
<br><br><br>
</div>
</div> <!-- features -->
</div> <!-- container -->
</body>
</html>