Skip to content

Commit 5c3ab9b

Browse files
committed
outline last chapter
1 parent c7e7fc5 commit 5c3ab9b

File tree

1 file changed

+31
-2
lines changed

1 file changed

+31
-2
lines changed

chapters/ch06.asciidoc

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,41 @@ Another benefit of going down this road is that, given we have all environment c
3030

3131
When it comes to sharing the secrets, given we're purposely excluding them from source version control, we can take many approaches, such as using environment variables, storing them in JSON files kept in an Amazon S3 bucket, or using an encrypted repository dedicated to our application secrets.
3232

33-
==== 6.2
33+
==== 6.2 Dependency Containment
3434

35-
..
35+
.. how to manage deps
3636

3737

3838

39+
==== 6.3 First Party, Third Party, and Last Party
40+
41+
.. treat everything as if were third party, apis and components alike
42+
43+
44+
45+
==== 6.4 Build, Release, Run
46+
47+
.. clearly defined build processes
48+
49+
50+
51+
==== 6.5 Statelessness
52+
53+
.. avoid keeping global state
54+
55+
56+
57+
==== 6.6 Disposability
58+
59+
.. gracefully blow up components
60+
61+
62+
63+
==== 6.7 Parity in Development and Production
64+
65+
.. keeping stuff like CSP on par makes for less brittle and unexpected things
66+
67+
3968

4069

4170

0 commit comments

Comments
 (0)