This repository has been archived by the owner on Dec 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
221 lines (210 loc) · 8.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Ramses API framework</title>
<meta name="description" content="">
<meta name="author" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/custom.css">
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<link rel="icon" type="image/png" href="images/favicon.png">
</head>
<body>
<div id="stars2"></div>
<div id="stars3"></div>
<div id="stars5"></div>
<div id="stars6"></div>
<div class="section get-help">
<div class="container">
<div class="row">
<div class="twelve column ramses-avatar-container">
<img src="images/ramses-avatar.jpg" class="ramses-avatar" width="300">
<h1 class="hero-heading">Ramses</h1>
<h4>the API generation framework</h4>
<iframe class="github" src="https://ghbtns.com/github-btn.html?user=ramses-tech&repo=ramses&type=star&count=true&size=large" frameborder="0" scrolling="0" width="160px" height="30px"></iframe>
</div>
</div>
<div class="row">
<div class="ten columns offset-by-one hero-heading-container">
<h5 style="text-align:left;margin-top:;color:white;margin-bottom:10rem;">
✓ Generate APIs from <a href="http://raml.org">RAML files</a><br />
✓ With <a href="https://rawgit.com/raml2html/raml2html/master/examples/example.html">API docs</a> and <a href="https://github.com/ramses-tech/ra">tests</a><br />
✓ And <a href="https://github.com/mulesoft/raml-client-generator">client libraries</a><br />
✓ <a href="https://nefertari.readthedocs.org/en/stable/making_requests.html">Powerful querying</a> with <a href="https://www.elastic.co/blog/make-an-elasticsearch-powered-rest-api-for-any-data-with-ramses">Elasticsearch</a><br />
✓ Advanced auth and <a href="https://nefertari-guards.readthedocs.org/en/stable/acl_filtering.html">fine-grained ACLs</a>
</h5>
<h6>Step 1, describe an API:</h5>
<pre><code class="hero-code">
/monuments:
get:
post:
body:
application/json:
schema: |
{ "$schema": "http://json-schema.org/schema",
"type": "object",
"properties": {
"name": { "type": "string" },
"location": { "type": "string" },
"dynasty": { "type": "integer" }
}
}
</code></pre>
</div>
</div>
<div class="row">
<div class="ten columns offset-by-one hero-heading-container">
<h6>Step 2, use it:</h6>
<pre><code class="hero-code">
$ curl http://localhost/api/monuments
{
"name": "Abu Simbel",
"location": "Nubia",
"dynasty": 19
}
</code></pre>
</div>
</div>
<div class="row">
<div class="four columns offset-by-four">
<a class="button button-primary" href="https://ramses.readthedocs.org/en/stable/getting_started.html">Get started</a>
</div>
</div>
</div>
</div>
<div class="section advantages">
<div class="container">
<div class="row">
<div class="one-third column value">
<img src="images/icon-rapid.gif" width="180">
<h2 class="value-name">Generate</h2>
<h5 class="value-heading">No more monkey work</h5>
<p class="value-description"><a href="http://raml.org/">RAML</a> defined APIs with zero boilerplate. Can also generate frontend code, documentation and tests.</p>
</div>
<div class="one-third column value">
<img src="images/icon-search.png" width="180">
<h2 class="value-name">Search</h2>
<h5 class="value-heading">Powerful querying built in</h5>
<p class="value-description">Using <a href="https://www.elastic.co/products/elasticsearch">Elasticsearch</a> under the hood. Aggregations, ranges, sorting, limits, pagination and more available as URL parameters.</p>
</div>
<div class="one-third column value">
<img src="images/icon-mix.png" width="180">
<h2 class="value-name">Compose</h2>
<h5 class="value-heading">Designed for <a href="http://martinfowler.com/articles/microservices.html">microservices</a></h5>
<p class="value-description">Wrap existing APIs or create new ones. Compliments existing stacks. Custom webhooks and validation supported.</p>
</div>
</div>
</div>
</div>
<div class="section get-help">
<div class="container">
<h2 class="section-heading"><strong>Need help getting started?</strong></h2>
<h4 class="section-description"><a href="https://gitter.im/ramses-tech/ramses">Chat with us on Gitter</a>, or send an email for private support.</h4>
<a class="button button-primary" href="mailto:[email protected]">get in touch</a>
</div>
</div>
<div class="section advantages">
<div class="container">
<h2 class="section-heading">Self-control</h2>
<p class="section-description">Run on your infrastructure of choice.</p>
<div class="row">
<div class="one-half column advantge">
<img src="images/icon-opensource.jpg" width="200"/>
<h3>Open source</h3>
<p>Easily readable internals. All code is documented, tested, and commented. Licensed under Apache 2.0.</p>
</div>
<div class="one-half column advantge">
<img src="images/icon-extensible.png" height="135" style="border-radius:0;">
<h3>Customizable</h3>
<p>Easy things are easy. Hard things are easy too. Add any logic by extending, overriding, wrapping, or hacking as you see fit.</p>
</div>
</div>
</div>
</div>
<a name="team"></a>
<div class="section get-help team">
<div class="container">
<h2 class="section-heading">Team</h2>
<p class="section-description">Ramses is made by and for developers</p>
<div class="row">
<div class="three columns team">
<img src="https://avatars.githubusercontent.com/u/9660342?v=3&s=400" width="120">
<h5>Jonathan Stoikovitch</h5>
<!-- <p>Montreal, Canada</p> -->
</div>
<div class="three columns team">
<img src="https://avatars.githubusercontent.com/u/461274?v=3&s=400" width="120">
<h5>Chris Hart</h5>
<!-- <p>Montreal, Canada</p> -->
</div>
<div class="three columns team">
<img src="https://avatars.githubusercontent.com/u/1999863?v=3&s=400" width="120">
<h5>Artem Kostiuk</h5>
<!-- <p>Bila Tserkva, Ukraine</p> -->
</div>
<div class="three columns team">
<img src="https://avatars.githubusercontent.com/u/312702?v=3&s=400" width="120">
<h5>Amos Latteier</h5>
<!-- <p>Vancouver, Canada</p> -->
</div>
<div class="three columns team">
<img src="https://avatars.githubusercontent.com/u/224078?v=3&s=400" width="120">
<h5>Mat Allen</h5>
<!-- <p>Vancouver, Canada</p> -->
</div>
<div class="three columns team">
<img src="https://avatars.githubusercontent.com/u/4790112?v=3&s=400" width="120">
<h5>Jan Mesarič</h5>
<!-- <p>Ljubljana, Slovenia</p> -->
</div>
<div class="three columns team">
<img src="https://avatars.githubusercontent.com/u/3224533?v=3&s=400" width="120">
<h5>Jaša Niklanovič</h5>
<!-- <p>Ljubljana, Slovenia</p> -->
</div>
<div class="three columns team">
<a href="https://gitter.im/ramses-tech/ramses"><img src="images/team-new.jpg" width="120"></a>
<h5><a href="mailto:[email protected]">Join Us</a></h5>
<!-- <p>Anywhere, Universe</p> -->
</div>
</div>
</div>
</div>
<div class="section services">
<div class="container">
<div class="row">
<h2 class="section-heading">Commercial Support</h2>
<p class="section-description">Power-up your team</p>
<ul class="nine columns offset-by-three services-list">
<li>New API design and development</li>
<li>Integration of third party APIs</li>
<li>Client libraries for any device</li>
<li>Analytics dashboards</li>
<li>Training, documentation</li>
<li>Customization, code review, core improvements</li>
</ul>
</div>
<div class="row">
<div class="four columns offset-by-four">
<a class="button button-primary" href="mailto:[email protected]">get in touch</a>
</div>
</div>
</div>
</div>
<div class="section footer">
<div class="container">
<p> © Ramses Tech, Inc.</p>
</div>
</div>
<script>
((window.gitter = {}).chat = {}).options = {
room: 'ramses-tech/ramses'
};
</script>
<script src="https://sidecar.gitter.im/dist/sidecar.v1.js" async defer></script>
</body>
</html>