forked from odewahn/dds-field-guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
147 lines (109 loc) · 4.89 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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml" 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>The Distributed Developer Stack Field Guide</title>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css"/>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap-theme.min.css"/>
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet"/>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"> </script>
<link rel="stylesheet" type="text/css" href="theme/html/html.css"/>
</head>
<body data-type="book">
<a href="https://github.com/odewahn/dds-field-guide/"><img src="https://s3.amazonaws.com/orm-atlas-media/fork-on-github.png" class="fork-on-github"/></a>
<header>
<img class="logo" src="http://orm-logo-service.herokuapp.com/webops/logo.svg"/>
<h1>The Distributed Developer Stack Field Guide</h1>
</header>
<div class="container">
<div class="row" style="padding:50px">
<div class="col-md-6">
<p style="font-size: 1.2em; line-height: 1.5em; padding: 10px">
The definitive source for mainstream technology practitioners to discover and understand the tools and concepts prominent in the shift to the <a href="http://radar.oreilly.com/2014/05/beyond-the-stack.html">distributed development stack</a> (DDS).</p>
<p>
<div class="row">
<div class="col-md-6">
<a href="ch01.html" class="btn btn-block btn-lg btn-success">Read online <span class="glyphicon glyphicon-chevron-right"></span></a>
</div>
<div class="col-md-6">
<a href="https://s3.amazonaws.com/orm-atlas-media/dds-field-guide.pdf" class="btn btn-block btn-lg btn-success">Download <span class="glyphicon glyphicon-download"></span></a>
</div>
</div>
</div>
<div class="col-md-1"> </div>
<div class="col-md-5" style="background-color: #eee; border-radius: 10px; padding: 10px">
<h3>How to contribute</h3>
<ol>
<li>Agree to the <a href="http://contributor-agreements.oreilly.com/">O'Reilly contributor license agreement</a>.</li>
<li><a href="https://github.com/odewahn/dds-field-guide">Fork the repo</a>.</li>
<li>Send a pull request.</li>
<li>Add yourself to the <a href="ch11.html">contributor page</a>.</li>
</ol>
</div>
</div>
</div>
<div class="container themes">
<h2>Some key ideas we're exploring...</h2>
<div class="row" style="padding:10px">
<div class="col-md-5 clearfix">
<span class="ico fa fa-cloud fa-5x fa-border"></span>
<a href="ch02.html">The cloud is the default platform.</a>
</div>
<div class="col-md-2"> </div>
<div class="col-md-5">
<span class="ico fa fa-cogs fa-5x fa-border"></span>
<a href="ch03.html">CI servers deploy code, not ops.</a>
</div>
</div>
<div class="row" style="padding:10px">
<div class="col-md-5 clearfix">
<span class="ico fa fa-github fa-5x fa-border"></span>
<a href="ch04.html">The codebase is in git.</a>
</div>
<div class="col-md-2"> </div>
<div class="col-md-5">
<span class="ico fa fa-laptop fa-5x fa-border"></span>
<a href="ch05.html">The application runs locally on development.</a>
</div>
</div>
<div class="row" style="padding:10px">
<div class="col-md-5 clearfix">
<span class="ico fa fa-wrench fa-5x fa-border"></span>
<a href="ch06.html">The environment is automated in the code.</a>
</div>
<div class="col-md-2"> </div>
<div class="col-md-5">
<span class="ico fa fa-stethoscope fa-5x fa-border"></span>
<a href="ch07.html">The monitoring infrastructure is critical.</a>
</div>
</div>
<div class="row" style="padding:10px">
<div class="col-md-5 clearfix">
<span class="ico fa fa-thumbs-o-up fa-5x fa-border"></span>
<a href="ch08.html">Tests done in code, not by a QA department.</a>
</div>
<div class="col-md-2"> </div>
<div class="col-md-5">
<span class="ico fa fa-th-large fa-5x fa-border"></span>
<a href="ch09.html">Containers are the default deployment target.</a>
</div>
</div>
<div class="row" style="padding:10px">
<div class="col-md-5 clearfix">
<span class="ico fa fa-comments fa-5x fa-border"></span>
<a href="ch10.html">Realtime chat and chatbots.</a>
</div>
<div class="col-md-2"> </div>
<div class="col-md-5">
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>