-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtutorials.html
executable file
·450 lines (398 loc) · 22.6 KB
/
tutorials.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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>DevLess - Simplest way to integrate services into your application(BAAS)</title>
<!-- main css file -->
<link rel="stylesheet" href="css/custom/style.css">
<!-- responsive css file -->
<link rel="stylesheet" href="css/responsive/responsive.css">
<link rel="stylesheet" href="css/helper.css">
<link rel="stylesheet" href="css/custom.css">
<!-- favicon -->
<link rel="icon" type="image/png" href="img/favicon.png">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- Global Site Tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-107114005-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments)};
gtag('js', new Date());
gtag('config', 'UA-107114005-1');
</script>
</head>
<body class="home v2">
<!-- ======= 1.01 Header Area ====== -->
<header id="home">
<div class="headerTopArea">
<div class="container">
<div class="row">
<div class="col-sm-6 col-xs-12">
<div class="langOpt">
<span class="langTxt">View on: </span>
<span class="langIcon"><a href="https://github.com/DevlessTeam"><img src="img/github.png" alt=""></a></span>
</div>
</div>
<div class="col-sm-6 col-xs-12">
<ul class="topInfo">
<li class="herokuBtn"><a href="https://dashboard.heroku.com/new?button-url=https://elements.heroku.com/buttons/devlessteam/dv-php-core&template=https%3A//github.com/DevlessTeam/DV-PHP-CORE/tree/heroku3"><i class="icofont icofont-rocket-alt-1"></i>1-click Heroku Install</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="headerBottomArea">
<div class="container">
<div class="row">
<div class="col-md-2 col-sm-3 col-xs-9">
<a href="./" class="logo"><img src="images/dv_logo_rev.png" alt=""></a>
</div>
<div class="col-md-10 menuCol col-sm-9 col-xs-9">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only"></span>
<i class="fa fa-navicon"></i>
</button>
</div>
<nav id="navbar" class="collapse navbar-collapse">
<ul id="nav">
<!-- <li ><a href="tutorials.html" target="blank">Tutorials</a></li> -->
<!-- <li ><a href="https://github.com/DevlessTeam/web-starter-pack/archive/master.zip" target="blank">Starter Pack</a></li> -->
<li><a href="features.html">Features</a>
<li><a href="why_use.html">Why DevLess</a>
<li><a href="tutorials.html">Tutorials</a>
<li class="current-menu-item"><a href="https://devless.gitbooks.io/devless-docs-1-3-0/quick-start.html" target="blank">Documentation</a></li>
</ul>
</nav>
</div>
</div>
</div>
</div>
</header>
<!-- ======= /1.01 Header Area ====== -->
<!-- ======= 1.02 Home Area ====== -->
<div class="tutsArea animated">
<div class="homeOverlay">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div class="homeContent text-center">
<span class="h2 homeTitle">DevLess Tutorials</span>
<!-- <span class="h2 homeTitle">Develop Less and Launch Fast!</span> -->
<p>DevLess provides an easy to use Data Storage for web and mobile applications as well as application components so there's little need for developers to write custom code to handle complex functionalities of your app. Develop Less with DevLess.</p>
<br>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- ======= /1.02 Home Area ====== -->
<!--
<div class="sectionBar"></div>
<div class="blogArea secPdng">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="h2 text-left">CookLess</div>
<p class="subTitle text-left mr-b-30">In this tutorial, you will learn how to build a recipe sharing web application from scratch using HTML and CSS (Bootstrap4) and DevLess. This is a beginner’s guide to building a web application with HTML & CSS</p>
</div>
</div>
<article class="row">
<div class="col-md-3 col-sm-6">
<div class="singlePost">
<div class="postImg"><a href="#"><img src="img/cookless.jpg" alt=""></a></div>
<div class="postContent">
<a href="#" class="postTitle h4">A beginner’s guide to building a web application with HTML & CSS — Part I</a>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6 animated fadeInUp" style="opacity: 1;">
<div class="singlePost">
<div class="postImg"><a href="#"><img src="img/cookless.jpg" alt=""></a></div>
<div class="postContent">
<a href="#" class="postTitle h4">A beginner’s guide to building a web application with HTML & CSS — Part II</a>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6 animated fadeInUp" style="opacity: 1;">
<div class="singlePost">
<div class="postImg"><a href="#"><img src="img/cookless.jpg" alt=""></a></div>
<div class="postContent">
<a href="#" class="postTitle h4">A beginner’s guide to building a web application with HTML & CSS — Part III</a>
</div>
</div>
</div>
</article>
</div>
</div> -->
<div class="sectionBar"></div>
<div class="blogArea secPdng">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="h2 text-left">DevLess Tutorials</div>
<p class="subTitle text-left mr-b-30">In this tutorial series, we are going to learn the ins and outs of using DevLess to power your awesome mobile and web application. <br/>Be sure to check out documentation as well.</p>
</div>
</div>
<article class="row">
<div class="col-md-3 col-sm-6">
<div class="singlePost">
<div class="postImg"><a href="https://www.youtube.com/watch?v=E1Wzu7LeYv4&list=PLNzw61D3rj5Pje-HYZ_WjMNBe7fOmMn8r&index=1"><img src="https://i.ytimg.com/vi/E1Wzu7LeYv4/hqdefault.jpg" alt=""></a></div>
<div class="postContent">
<a href="#" class="postTitle h4">What and why to use DevLess</a>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="singlePost">
<div class="postImg"><a href="https://www.youtube.com/watch?v=f5BwbMNoXGw&list=PLNzw61D3rj5Pje-HYZ_WjMNBe7fOmMn8r&index=2"><img src="https://i.ytimg.com/vi/f5BwbMNoXGw/hqdefault.jpg" alt=""></a></div>
<div class="postContent">
<a href="#" class="postTitle h4">Installing DevLess on Heroku</a>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="singlePost">
<div class="postImg"><a href="https://www.youtube.com/watch?v=kddCS4vKXro&list=PLNzw61D3rj5Pje-HYZ_WjMNBe7fOmMn8r&index=3"><img src="https://i.ytimg.com/vi/kddCS4vKXro/hqdefault.jpg" alt=""></a></div>
<div class="postContent">
<a href="#" class="postTitle h4">Handling authentication in Android using DevLess</a>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="singlePost">
<div class="postImg"><a href="https://www.youtube.com/watch?v=ii99siuj1gs&list=PLNzw61D3rj5Pje-HYZ_WjMNBe7fOmMn8r&index=4"><img src="https://i.ytimg.com/vi/ii99siuj1gs/hqdefault.jpg" alt=""></a></div>
<div class="postContent">
<a href="#" class="postTitle h4">Using DevLess Services to extend your app functionality</a>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="singlePost">
<div class="postImg"><a href="https://www.youtube.com/watch?v=XYchukmHe_U&list=PLNzw61D3rj5Pje-HYZ_WjMNBe7fOmMn8r&index=5"><img src="https://i.ytimg.com/vi/XYchukmHe_U/hqdefault.jpg" alt=""></a></div>
<div class="postContent">
<a href="#" class="postTitle h4">Performing Android Crud actions on DevLess</a>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="singlePost">
<div class="postImg"><a href="https://www.youtube.com/watch?v=EqMp0EYSf0s&list=PLNzw61D3rj5Pje-HYZ_WjMNBe7fOmMn8r&index=6"><img src="https://i.ytimg.com/vi/EqMp0EYSf0s/hqdefault.jpg" alt=""></a></div>
<div class="postContent">
<a href="#" class="postTitle h4">Quickly bootstrap your app with the DevLess starter pack</a>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="singlePost">
<div class="postImg"><a href="https://www.youtube.com/watch?v=Mwurl21niSw&list=PLNzw61D3rj5Pje-HYZ_WjMNBe7fOmMn8r&index=8"><img src="https://i.ytimg.com/vi/Mwurl21niSw/hqdefault.jpg" alt=""></a></div>
<div class="postContent">
<a href="#" class="postTitle h4">Handling data flow on DevLess</a>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="singlePost">
<div class="postImg"><a href="https://www.youtube.com/watch?v=HIQw2FeeQnc&list=PLNzw61D3rj5Pje-HYZ_WjMNBe7fOmMn8r&index=9"><img src="https://i.ytimg.com/vi/HIQw2FeeQnc/hqdefault.jpg" alt=""></a></div>
<div class="postContent">
<a href="#" class="postTitle h4">Getting started with Android using DevLess as your backend</a>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="singlePost">
<div class="postImg"><a href="https://www.youtube.com/watch?v=a2ScbtehNeE&list=PLNzw61D3rj5Pje-HYZ_WjMNBe7fOmMn8r&index=11"><img src="https://i.ytimg.com/vi/a2ScbtehNeE/hqdefault.jpg" alt=""></a></div>
<div class="postContent">
<a href="#" class="postTitle h4">Change the default DevLess output.</a>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="singlePost">
<div class="postImg"><a href="https://www.youtube.com/watch?v=z6CXQhcQz6I&list=PLNzw61D3rj5Pje-HYZ_WjMNBe7fOmMn8r&index=12"><img src="https://i.ytimg.com/vi/z6CXQhcQz6I/hqdefault.jpg" alt=""></a></div>
<div class="postContent">
<a href="#" class="postTitle h4">Manipulating data before storing on DevLess.</a>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="singlePost">
<div class="postImg"><a href="https://www.youtube.com/watch?v=7dhs2Rx15g8&list=PLNzw61D3rj5Pje-HYZ_WjMNBe7fOmMn8r&index=13"><img src="https://i.ytimg.com/vi/7dhs2Rx15g8/hqdefault.jpg" alt=""></a></div>
<div class="postContent">
<a href="#" class="postTitle h4">DevLess Database manager Service</a>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="singlePost">
<div class="postImg"><a href="https://www.youtube.com/watch?v=s3q6cGytLqc&list=PLNzw61D3rj5Pje-HYZ_WjMNBe7fOmMn8r&index=14"><img src="https://i.ytimg.com/vi/s3q6cGytLqc/hqdefault.jpg" alt=""></a></div>
<div class="postContent">
<a href="#" class="postTitle h4">Gain Terminal access within DevLess</a>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="singlePost">
<div class="postImg"><a href="https://www.youtube.com/watch?v=0_82kez2JMk&list=PLNzw61D3rj5Pje-HYZ_WjMNBe7fOmMn8r&index=15"><img src="https://i.ytimg.com/vi/0_82kez2JMk/hqdefault.jpg" alt=""></a></div>
<div class="postContent">
<a href="#" class="postTitle h4">DevLess Docker installation</a>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="singlePost">
<div class="postImg"><a href="https://www.youtube.com/watch?v=ih63gDK_6EA&list=PLNzw61D3rj5Pje-HYZ_WjMNBe7fOmMn8r&index=16"><img src="https://i.ytimg.com/vi/ih63gDK_6EA/hqdefault.jpg" alt=""></a></div>
<div class="postContent">
<a href="#" class="postTitle h4">Linking up your DevLess Tables</a>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="singlePost">
<div class="postImg"><a href="https://www.youtube.com/watch?v=f5BwbMNoXGw&list=PLNzw61D3rj5Pje-HYZ_WjMNBe7fOmMn8r&index=17"><img src="https://i.ytimg.com/vi/f5BwbMNoXGw/hqdefault.jpg" alt=""></a></div>
<div class="postContent">
<a href="#" class="postTitle h4">Installing DevLess on Heroku</a>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="singlePost">
<div class="postImg"><a href="https://www.youtube.com/watch?v=E1Wzu7LeYv4&list=PLNzw61D3rj5Pje-HYZ_WjMNBe7fOmMn8r&index=21"><img src="https://i.ytimg.com/vi/E1Wzu7LeYv4/hqdefault.jpg" alt=""></a></div>
<div class="postContent">
<a href="#" class="postTitle h4">What and why to use DevLess</a>
</div>
</div>
</div>
</article>
</div>
</div>
<!-- ======= 2.05 Page Newsletters Area ====== -->
<div class="newsletterArea secPdng animated">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="sectionTitle">
<div class="h2">Subscribe to our newsletter <br> to get news and updates from DevLess.</div>
</div>
</div>
<div class="col-md-8 col-md-offset-2">
<form action="https://devless.us16.list-manage.com/subscribe/post?u=58250c914fb10529dd31c83c6&id=b1212d2f91" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate newsletter" target="_blank" novalidate>
<div id="mce-responses" class="clear">
<div class="response" id="mce-error-response" style="display:none"></div>
<div class="response" id="mce-success-response" style="display:none"></div>
</div>
<div class="inputWrep">
<input type="email" value="" name="EMAIL" class="required email" id="mce-EMAIL" placeholder="Enter your email address">
<input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button">
</div>
</form>
</div>
</div>
</div>
</div>
<div class="ctaTwo ">
<div class="container animated fadeInUp" style="opacity: 1;">
<div class="row">
<div class="col-md-12">
<span class="ctaTxtTwo">Need help getting started with your Web or Mobile App?</span>
<div class="ctaBtn"><a href="http://slack.devless.io" class="btnOne Btn">Join Our Community</a></div>
</div>
</div>
</div>
</div>
<!-- ======= 1.09 footer Area ====== -->
<footer class="secPdng animated">
<div class="container">
<div class="row">
<div class="col-md-3">
<div class="footerInfo">
<a href="./" class="footerLogo">
<img src="img/logo.png" alt="">
</a>
<div class="footerTxt">
<p>The business first application <br>framework</p>
</div>
</div>
</div>
<div class="col-md-3">
<div class="widget">
<div class="h4">Resources</div>
<ul class="footerLink">
<!-- <li><a href="https://devless.gitbooks.io/devless-docs-1-3-0/content/why-devless.html">Documentation</a></li> -->
<li><a href="https://www.youtube.com/channel/UCRNPvrhMwFczppgthkzv44A">Tutorials - Easy to Follow</a></li>
<li><a href="https://github.com/DevlessTeam/web-starter-pack/archive/master.zip">Starter Kits</a></li>
<li><a href="http://slack.devless.io">Support</a></li>
</ul>
</div>
</div>
<div class="col-md-3">
<div class="contactInfo">
<div class="h4">Social Media</div>
<ul class="footerLinkIcon">
<li><a href="https://www.facebook.com/devless.io"><i class="icofont icofont-social-facebook"></i></a></li>
<li><a href="https://www.twitter.com/devlessio"><i class="icofont icofont-social-twitter"></i></a></li>
<li><a href="https://www.youtube.com/channel/UCRNPvrhMwFczppgthkzv44A"><i class="icofont icofont-social-youtube"></i></a></li>
<li><a href="http://slack.devless.io/"><i class="icofont icofont-social-slack"></i></a></li>
<!-- <li><a href="https://github.com/DevlessTeam/"><i class="icofont icofont-social-github"></i></a></li> -->
</ul>
</div>
</div>
<div class="col-md-3">
<div class="contactInfo">
<div class="h4">Connect with Us</div>
<div class="footerTxt mr-t-20">
<p>No. 19, Banana Street <br/>East Legon, Accra <br/> Ghana</p>
</div>
</div>
</div>
</div>
</div>
</footer>
<div class="sectionBar"></div>
<div class="">
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<div class="copyrightTxt">
<p>© Copyright 2017 - DevLess, All Rights Reserved</p>
</div>
</div>
</div>
</div>
</div>
</body>
<!-- ======= /1.09 footer Area ====== -->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="js/jquery.1.11.3.min.js"></script> <!-- jQuery -->
<script src="js/bootstrap.min.js"></script> <!-- Bootstrap -->
<script src="js/active.js"></script> <!-- active js -->
<!-- <script src="js/devless-sdk.js"></script> <!-- active js -->
<script src="js/custom.js"></script>
<script src="https://cdn.smooch.io/smooch.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/waypoints/2.0.3/waypoints.min.js"></script>
<script src="http://bfintal.github.io/Counter-Up/jquery.counterup.min.js"></script>
<script>
$(document).ready(function ($) {
if($(window).width() > 768) {
Smooch.init({ appToken: 'dwceebhfw3pg84b8a5x4xqucp' });
Smooch.sendMessage("Hello there, Edmond here. Ask me anything, or share your feedback. You can also drop me a line at [email protected]", {
role: 'appMaker'
}).then(() => {
});
var scrollCount = 0;
$( window ).scroll(function() {
scrollCount++;
if (scrollCount < 60 && scrollCount > 50) {
Smooch.open();
}
});
}
});
</script>
<script src="js/mixpanel.js"></script><!-- Mixpanel js -->