-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathturbo.html
118 lines (116 loc) · 4.39 KB
/
turbo.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>
App turbo - wecatch
</title>
<link rel="stylesheet" href="css/app.css">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="wb:webmaster" content="810c43be37564023" />
<meta property="qc:admins" content="15272173531430655" />
<link rel="icon" href="img/favicon.ico">
<script>
(function() {
if (!
/*@cc_on!@*/
0) return;
var e = "abbr, article, aside, audio, canvas, datalist, details, dialog, eventsource, figure, footer, header, hgroup, mark, menu, meter, nav, output, progress, section, time, video".split(', ');
var i = e.length;
while (i--) {
document.createElement(e[i]);
}
})()
</script>
</head>
<body class="turbo">
<main>
<nav class="main">
<div class="container">
<div class="logo">
<a href="http://wecatch.me/turbo.html" id="site_name">App turbo</a>
</div>
<div class="site-back">
<a href="http://wecatch.me">
<span>wecatch</span>
</a>
</div>
</div>
</nav>
<article class="summary">
<section class="brief">
<figure>
<img src="img/turbo.png"/>
</figure>
<div class="content">
<p class="intro">App turbo 的诞生旨在为基于 tornado 和 mongodb 的应用开发提供快速构建,便于扩展,易于维护的最佳实践方案。App turbo 包含以下特性</p>
<ul>
<li>
<p>简易的 ORM (基于 Mongodb)</p>
</li>
<li>
<p>快速构建 RESTful API </p>
</li>
<li>
<p>易于扩展和维护的 App 结构</p>
</li>
<li>
<p>灵活的 log</p>
</li>
<li>
<p>简单可以增强的 Session</p>
</li>
</ul>
</div>
</section>
<section class="download center">
<p class="desc">App turbo an open-source project backed by wecatch</p>
<a class="btn-chief" href="http://github.com/wecatch/app-turbo">Fork us on Github</a>
</section>
</article>
<article class="how-to-use">
<section>
<h3 class="title">安装</h3>
<p>快速安装</p>
<pre>
<code>
pip install turbo
</code>
</pre>
<p>安装最新版</p>
<pre>
<code>
git clone https://github.com/wecatch/app-turbo.git
cd app-turbo
python setup.py install
</code>
</pre>
<h3 class="title">demo</h3>
<pre>
<code>
git clone https://github.com/wecatch/app-turbo.git
cd app-turbo/demos/helloword/app-server
python main.py
</code>
</pre>
<p>打开浏览器访问</p>
<pre>
<code>
http://localhost:8888/hello
http://localhost:8888/v1/hello
</code>
</pre>
<section class="download">
<h3 class="title">Documents & Download</h3>
<!-- <p class="desc">More details in API Documents</p> -->
<a class="btn-chief" href="http://app-turbo.readthedocs.org/">Get Started</a>
<a class="btn-chief italic" href="https://github.com/wecatch/app-turbo/archive/v0.3.8.zip">Download App turbo 0.3.8</a>
</section>
</section>
</article>
</main>
<footer>
<p>Beijing © 2014 wecatch</p>
</footer>
</body>
</html>