summaryrefslogtreecommitdiff
path: root/.html/12factor/3-config.html
diff options
context:
space:
mode:
Diffstat (limited to '.html/12factor/3-config.html')
-rw-r--r--.html/12factor/3-config.html106
1 files changed, 106 insertions, 0 deletions
diff --git a/.html/12factor/3-config.html b/.html/12factor/3-config.html
new file mode 100644
index 0000000..a7f58cf
--- /dev/null
+++ b/.html/12factor/3-config.html
@@ -0,0 +1,106 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <title>
+ The Codex »
+ Factor 3: Config
+ </title>
+
+ <link
+ rel='stylesheet'
+ type='text/css'
+ href='http://fonts.googleapis.com/css?family=Buenard:400,700&amp;subset=latin,latin-ext'>
+ <link
+ rel="stylesheet"
+ type="text/css"
+ href="../media/css/reset.css">
+ <link
+ rel="stylesheet"
+ type="text/css"
+ href="../media/css/grimoire.css">
+</head>
+<body>
+
+<div id="shell">
+
+ <ol id="breadcrumbs">
+
+ <li class="crumb-0 not-last">
+
+ <a href="../">index</a>
+
+ </li>
+
+ <li class="crumb-1 not-last">
+
+ <a href="./">12factor</a>
+
+ </li>
+
+ <li class="crumb-2 last">
+
+ 3-config
+
+ </li>
+
+ </ol>
+
+
+
+ <div id="article">
+ <h1 id="factor-3-config">Factor 3: Config</h1>
+<p><a href="http://www.12factor.net/config">This section</a> advises using environment
+variables for everything.</p>
+<blockquote>
+<p><a href="https://twitter.com/derspiny">Owen J</a>: I think I disagree with
+12factor's conclusions on config even though I agree with the premises
+and rationale in general</p>
+<p><a href="https://twitter.com/derspiny">Owen J</a>: environment variables
+are neither exceptionally portable, exceptionally standard, nor
+exceptionally easy to manage</p>
+<p><a href="https://twitter.com/derspiny">Owen J</a>: and therefore should not be
+the exceptional configuration mechanism :)</p>
+<p><a href="https://twitter.com/wlonk">Kit L</a>: that's exactly the critique i have</p>
+</blockquote>
+<p>Frustratingly, the config section doesn't provide any guidance on sensible
+ways to <em>manage</em> environment variables. In any real-world deployment, they're
+going to have to be stored somewhere; where's appropriate? <code>.bash_profile</code>?
+<code>httpd.con</code> as <code>SetEnv</code> directives? Per-release <code>rc</code> files? <code>/etc/init.d</code>?</p>
+ </div>
+
+
+
+<div id="comments">
+<div id="disqus_thread"></div>
+<script type="text/javascript">
+ /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
+ var disqus_shortname = 'grimoire'; // required: replace example with your forum shortname
+
+ /* * * DON'T EDIT BELOW THIS LINE * * */
+ (function() {
+ var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
+ dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js';
+ (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
+ })();
+</script>
+<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
+<a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
+</div>
+
+
+
+ <div id="footer">
+ <p>
+
+ The Codex —
+
+ Powered by <a href="http://markdoc.org/">Markdoc</a>.
+
+<a href="https://bitbucket.org/ojacobson/grimoire.ca/src/master/wiki/12factor/3-config.md">See this page on Bitbucket</a> (<a href="https://bitbucket.org/ojacobson/grimoire.ca/history-node/master/wiki/12factor/3-config.md">history</a>).
+
+ </p>
+ </div>
+
+</div>
+</body>
+</html> \ No newline at end of file