-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME.qmd
51 lines (38 loc) · 1.49 KB
/
README.qmd
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
---
title: "MDA DevOps for Data Science"
execute:
echo: true
output: true
message: false
warning: false
---
The MDA team at CORI will do a book club and review the book [DevOps for Data Science](https://do4ds.com/) written by **Alex K Gold** here.
- <a href="https://github.com/ruralinnovation/mda_do4ds" target="_blank">Book study repo</a>
- <a href="https://ruralinnovation.github.io/mda_do4ds" target="_blank">Book study site</a>
- <a href="https://drive.google.com/drive/folders/1F_8fxj3gkyS5yHvmrzO2L__C6xXnAzO7" target="_blank">Book study google drive</a>
### Planning:
1. [Introduction + Environments as Code](./chapters/sec1/1-1-env-as-code.qmd): Olivier
2. [Data Project Architecture](./chapters/sec1/1-2-proj-arch.qmd): John
3. [Databases and Data APIs](./chapters/sec1/1-3-data-access.qmd): Brittany
4. [Logging and Monitoring](./chapters/sec1/1-4-monitor-log.qmd): John
5. [Deployments and Code Promotion](./chapters/sec1/1-5-deployments.qmd): Camden
6. [Demystifying Docker](./chapters/sec1/1-6-docker.qmd): John
7. ...
### Workflow:
1. Clone this repo
2. Create a specific branch:
```
git checkout -b ch-?/???
# (replace `?` with the chapter number and `???` with a name/title)
```
3. Install [Quarto CLI](https://quarto.org/docs/get-started/)
4. Install local dependencies:
```
npm install
```
6. Preview Quarto site:
```
npm run preview
```
7. Make changes and commit as needed
8. Push commits and create a pull request