Skip to content

Commit

Permalink
Built site for gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
Quarto GHA Workflow Runner committed Aug 7, 2024
1 parent 3b97f53 commit 2242543
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 38 deletions.
2 changes: 1 addition & 1 deletion .nojekyll
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1c381806
7e7bfb44
14 changes: 7 additions & 7 deletions chapters/sec1/1-5-deployments.html
Original file line number Diff line number Diff line change
Expand Up @@ -523,11 +523,11 @@ <h3 class="anchored" data-anchor-id="quick-intro-to-github-actions">Quick Intro
<dl class="code-annotation-container-grid">
<dt data-target-cell="annotated-cell-2" data-target-annotation="1">1</dt>
<dd>
<span data-code-lines="3" data-code-annotation="1" data-code-cell="annotated-cell-2">This Action runs on a <code>push</code>, which includes s completed merge.</span>
<span data-code-annotation="1" data-code-lines="3" data-code-cell="annotated-cell-2">This Action runs on a <code>push</code>, which includes s completed merge.</span>
</dd>
<dt data-target-cell="annotated-cell-2" data-target-annotation="2">2</dt>
<dd>
<span data-code-lines="4" data-code-annotation="2" data-code-cell="annotated-cell-2">This Action runs based on operations on the <code>main</code> branch.</span>
<span data-code-annotation="2" data-code-lines="4" data-code-cell="annotated-cell-2">This Action runs based on operations on the <code>main</code> branch.</span>
</dd>
</dl>
<p>Other common patterns include pre-merge checks that trigger on the creation of a pull request or a test deployment on a push to a <code>test</code> branch.</p>
Expand All @@ -543,11 +543,11 @@ <h3 class="anchored" data-anchor-id="quick-intro-to-github-actions">Quick Intro
<dl class="code-annotation-container-grid">
<dt data-target-cell="annotated-cell-3" data-target-annotation="1">1</dt>
<dd>
<span data-code-lines="2" data-code-annotation="1" data-code-cell="annotated-cell-3">The name of this job is <code>deploy</code>. There can be multiple jobs per action.</span>
<span data-code-annotation="1" data-code-lines="2" data-code-cell="annotated-cell-3">The name of this job is <code>deploy</code>. There can be multiple jobs per action.</span>
</dd>
<dt data-target-cell="annotated-cell-3" data-target-annotation="2">2</dt>
<dd>
<span data-code-lines="3" data-code-annotation="2" data-code-cell="annotated-cell-3">This job runs on the latest Ubuntu release.</span>
<span data-code-annotation="2" data-code-lines="3" data-code-cell="annotated-cell-3">This job runs on the latest Ubuntu release.</span>
</dd>
</dl>
<p>GitHub Actions offers runners with Ubuntu, Windows, and MacOS. You can also add custom runners. Depending on the level of reproducibility you’re aiming for, you might want to lock the runner to a particular version of the operating system rather than just running <code>latest</code>.</p>
Expand All @@ -568,15 +568,15 @@ <h3 class="anchored" data-anchor-id="quick-intro-to-github-actions">Quick Intro
<dl class="code-annotation-container-grid">
<dt data-target-cell="annotated-cell-4" data-target-annotation="1">1</dt>
<dd>
<span data-code-lines="2" data-code-annotation="1" data-code-cell="annotated-cell-4">This job uses version 2 (<code>@v2</code>) of the <code>publish</code> action from the (imaginary) GitHub repo <code>server-dev/server-actions</code>.</span>
<span data-code-annotation="1" data-code-lines="2" data-code-cell="annotated-cell-4">This job uses version 2 (<code>@v2</code>) of the <code>publish</code> action from the (imaginary) GitHub repo <code>server-dev/server-actions</code>.</span>
</dd>
<dt data-target-cell="annotated-cell-4" data-target-annotation="2">2</dt>
<dd>
<span data-code-lines="4" data-code-annotation="2" data-code-cell="annotated-cell-4">This job is being provided a value of <code>my-server</code> for the <code>server-name</code> variable.</span>
<span data-code-annotation="2" data-code-lines="4" data-code-cell="annotated-cell-4">This job is being provided a value of <code>my-server</code> for the <code>server-name</code> variable.</span>
</dd>
<dt data-target-cell="annotated-cell-4" data-target-annotation="3">3</dt>
<dd>
<span data-code-lines="6" data-code-annotation="3" data-code-cell="annotated-cell-4">The variable <code>SERVER_API_KEY</code> will be set to the value stored in the GitHub Actions <code>secrets</code> variable called <code>SERVER_API_KEY</code>.</span>
<span data-code-annotation="3" data-code-lines="6" data-code-cell="annotated-cell-4">The variable <code>SERVER_API_KEY</code> will be set to the value stored in the GitHub Actions <code>secrets</code> variable called <code>SERVER_API_KEY</code>.</span>
</dd>
</dl>
<p>Some jobs require secrets be in an environment variable, which can be set just like a regular variable, but with <code>env</code> in place of <code>with</code>.</p>
Expand Down
2 changes: 1 addition & 1 deletion chapters/sec1/1-6-docker.html
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ <h2 class="anchored" data-anchor-id="lab-putting-an-api-in-a-container">Lab: Put
<dl class="code-annotation-container-grid">
<dt data-target-cell="annotated-cell-3" data-target-annotation="1">1</dt>
<dd>
<span data-code-cell="annotated-cell-3" data-code-lines="4" data-code-annotation="1">This line is necessary because the model lives at <code>/data/model</code> on our <strong>host</strong> machine. But the API inside the container is looking for <code>/data/model</code> <strong>inside the container</strong>. We need to make sure that the directory exists and has the model in it.</span>
<span data-code-lines="4" data-code-cell="annotated-cell-3" data-code-annotation="1">This line is necessary because the model lives at <code>/data/model</code> on our <strong>host</strong> machine. But the API inside the container is looking for <code>/data/model</code> <strong>inside the container</strong>. We need to make sure that the directory exists and has the model in it.</span>
</dd>
</dl>
<section id="lab-extensions" class="level3">
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ <h1 class="title">DevOps for Data Science</h1>
<h1 class="unnumbered unlisted">Welcome!</h1><p><img src="cover.jpg" title="DevOps for Data Science" class="quarto-cover-image img-fluid"></p>
<p>In this book, you’ll learn about DevOps conventions, tools, and practices that can be useful to you as a data scientist. You’ll also learn how to work better with the IT/Admin team at your organization, and even how to do a little server administration of your own if you’re pressed into service.</p>
<p>This is the online version of the book. It is, and always will be, freely available here at <a href="https://do4ds.com"><span class="math inline">\(\text{do4ds.com}\)</span></a>.</p>
<p>Should you want a print copy of the book, it is available and shipping now from the <a href="https://www.routledge.com/DevOps-for-Data-Science/Gold/p/book/9781032100340">Routledge website</a>.</p>
<p>Should you want a print copy of the book, it is available and shipping now from the <a href="https://www.routledge.com/DevOps-for-Data-Science/Gold/p/book/9781032100340">Routledge website</a>, <a href="https://www.amazon.com/DevOps-Data-Science-Chapman-Hall/dp/1032100346">Amazon</a>, and several independent <a href="https://edmondsbookshop.com/book/9781032100340">online</a> <a href="https://joyridebookshop.com/book/9781032100340">bookstores</a>.</p>
<section id="about-the-author" class="level2">
<h2 class="anchored" data-anchor-id="about-the-author">About the author</h2>
<p>Alex K Gold leads the Solutions Engineering at Posit, formerly RStudio.</p>
Expand Down
2 changes: 1 addition & 1 deletion search.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"href": "index.html",
"title": "DevOps for Data Science",
"section": "",
"text": "Welcome!\nIn this book, you’ll learn about DevOps conventions, tools, and practices that can be useful to you as a data scientist. You’ll also learn how to work better with the IT/Admin team at your organization, and even how to do a little server administration of your own if you’re pressed into service.\nThis is the online version of the book. It is, and always will be, freely available here at \\(\\text{do4ds.com}\\).\nShould you want a print copy of the book, it is available and shipping now from the Routledge website."
"text": "Welcome!\nIn this book, you’ll learn about DevOps conventions, tools, and practices that can be useful to you as a data scientist. You’ll also learn how to work better with the IT/Admin team at your organization, and even how to do a little server administration of your own if you’re pressed into service.\nThis is the online version of the book. It is, and always will be, freely available here at \\(\\text{do4ds.com}\\).\nShould you want a print copy of the book, it is available and shipping now from the Routledge website, Amazon, and several independent online bookstores."
},
{
"objectID": "index.html#about-the-author",
Expand Down
54 changes: 27 additions & 27 deletions sitemap.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,110 +2,110 @@
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://do4ds.com/index.html</loc>
<lastmod>2024-07-05T18:57:55.227Z</lastmod>
<lastmod>2024-08-07T13:00:16.247Z</lastmod>
</url>
<url>
<loc>https://do4ds.com/chapters/intro.html</loc>
<lastmod>2024-07-05T18:57:55.231Z</lastmod>
<lastmod>2024-08-07T13:00:16.255Z</lastmod>
</url>
<url>
<loc>https://do4ds.com/chapters/sec1/1-0-sec-intro.html</loc>
<lastmod>2024-07-05T18:57:55.239Z</lastmod>
<lastmod>2024-08-07T13:00:16.263Z</lastmod>
</url>
<url>
<loc>https://do4ds.com/chapters/sec1/1-1-env-as-code.html</loc>
<lastmod>2024-07-05T18:57:55.251Z</lastmod>
<lastmod>2024-08-07T13:00:16.271Z</lastmod>
</url>
<url>
<loc>https://do4ds.com/chapters/sec1/1-2-proj-arch.html</loc>
<lastmod>2024-07-05T18:57:55.263Z</lastmod>
<lastmod>2024-08-07T13:00:16.283Z</lastmod>
</url>
<url>
<loc>https://do4ds.com/chapters/sec1/1-3-data-access.html</loc>
<lastmod>2024-07-05T18:57:55.279Z</lastmod>
<lastmod>2024-08-07T13:00:16.299Z</lastmod>
</url>
<url>
<loc>https://do4ds.com/chapters/sec1/1-4-monitor-log.html</loc>
<lastmod>2024-07-05T18:57:55.291Z</lastmod>
<lastmod>2024-08-07T13:00:16.315Z</lastmod>
</url>
<url>
<loc>https://do4ds.com/chapters/sec1/1-5-deployments.html</loc>
<lastmod>2024-07-05T18:57:55.303Z</lastmod>
<lastmod>2024-08-07T13:00:16.327Z</lastmod>
</url>
<url>
<loc>https://do4ds.com/chapters/sec1/1-6-docker.html</loc>
<lastmod>2024-07-05T18:57:55.319Z</lastmod>
<lastmod>2024-08-07T13:00:16.335Z</lastmod>
</url>
<url>
<loc>https://do4ds.com/chapters/sec2/2-0-sec-intro.html</loc>
<lastmod>2024-07-05T18:57:55.323Z</lastmod>
<lastmod>2024-08-07T13:00:16.343Z</lastmod>
</url>
<url>
<loc>https://do4ds.com/chapters/sec2/2-1-cloud.html</loc>
<lastmod>2024-07-05T18:57:55.335Z</lastmod>
<lastmod>2024-08-07T13:00:16.359Z</lastmod>
</url>
<url>
<loc>https://do4ds.com/chapters/sec2/2-2-cmd-line.html</loc>
<lastmod>2024-07-05T18:57:55.347Z</lastmod>
<lastmod>2024-08-07T13:00:16.367Z</lastmod>
</url>
<url>
<loc>https://do4ds.com/chapters/sec2/2-3-linux.html</loc>
<lastmod>2024-07-05T18:57:55.363Z</lastmod>
<lastmod>2024-08-07T13:00:16.387Z</lastmod>
</url>
<url>
<loc>https://do4ds.com/chapters/sec2/2-4-app-admin.html</loc>
<lastmod>2024-07-05T18:57:55.375Z</lastmod>
<lastmod>2024-08-07T13:00:16.399Z</lastmod>
</url>
<url>
<loc>https://do4ds.com/chapters/sec2/2-5-scale.html</loc>
<lastmod>2024-07-05T18:57:55.391Z</lastmod>
<lastmod>2024-08-07T13:00:16.411Z</lastmod>
</url>
<url>
<loc>https://do4ds.com/chapters/sec2/2-6-networking.html</loc>
<lastmod>2024-07-05T18:57:55.403Z</lastmod>
<lastmod>2024-08-07T13:00:16.427Z</lastmod>
</url>
<url>
<loc>https://do4ds.com/chapters/sec2/2-7-dns.html</loc>
<lastmod>2024-07-05T18:57:55.411Z</lastmod>
<lastmod>2024-08-07T13:00:16.435Z</lastmod>
</url>
<url>
<loc>https://do4ds.com/chapters/sec2/2-8-ssl.html</loc>
<lastmod>2024-07-05T18:57:55.435Z</lastmod>
<lastmod>2024-08-07T13:00:16.443Z</lastmod>
</url>
<url>
<loc>https://do4ds.com/chapters/sec3/3-0-sec-intro.html</loc>
<lastmod>2024-07-05T18:57:55.455Z</lastmod>
<lastmod>2024-08-07T13:00:16.455Z</lastmod>
</url>
<url>
<loc>https://do4ds.com/chapters/sec3/3-1-ent-networks.html</loc>
<lastmod>2024-07-05T18:57:55.463Z</lastmod>
<lastmod>2024-08-07T13:00:16.479Z</lastmod>
</url>
<url>
<loc>https://do4ds.com/chapters/sec3/3-2-auth.html</loc>
<lastmod>2024-07-05T18:57:55.471Z</lastmod>
<lastmod>2024-08-07T13:00:16.495Z</lastmod>
</url>
<url>
<loc>https://do4ds.com/chapters/sec3/3-3-ent-scale.html</loc>
<lastmod>2024-07-05T18:57:55.479Z</lastmod>
<lastmod>2024-08-07T13:00:16.503Z</lastmod>
</url>
<url>
<loc>https://do4ds.com/chapters/sec3/3-4-ent-pm.html</loc>
<lastmod>2024-07-05T18:57:55.483Z</lastmod>
<lastmod>2024-08-07T13:00:16.507Z</lastmod>
</url>
<url>
<loc>https://do4ds.com/chapters/append/auth.html</loc>
<lastmod>2024-07-05T18:57:55.495Z</lastmod>
<lastmod>2024-08-07T13:00:16.515Z</lastmod>
</url>
<url>
<loc>https://do4ds.com/chapters/append/lb.html</loc>
<lastmod>2024-07-05T18:57:55.499Z</lastmod>
<lastmod>2024-08-07T13:00:16.519Z</lastmod>
</url>
<url>
<loc>https://do4ds.com/chapters/append/lab-map.html</loc>
<lastmod>2024-07-05T18:57:55.507Z</lastmod>
<lastmod>2024-08-07T13:00:16.531Z</lastmod>
</url>
<url>
<loc>https://do4ds.com/chapters/append/cheatsheets.html</loc>
<lastmod>2024-07-05T18:57:55.531Z</lastmod>
<lastmod>2024-08-07T13:00:16.551Z</lastmod>
</url>
</urlset>

0 comments on commit 2242543

Please sign in to comment.