Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add build tools for Jupyter and .gitignore
  • Loading branch information
Timothy Middelkoop committed Nov 2, 2021
1 parent b4b654e commit ddb1356
Show file tree
Hide file tree
Showing 21 changed files with 94 additions and 1,562 deletions.
8 changes: 8 additions & 0 deletions .gitignore
@@ -0,0 +1,8 @@
.DS_Store/
.ipynb_checkpoints/
/.vscode/
.venv/
log/
data/
_build/
local*
6 changes: 6 additions & 0 deletions .vscode/settings.json
@@ -0,0 +1,6 @@
{
"files.watcherExclude": {
"**/.venv/**": true
},
"python.pythonPath": ".venv/bin/python3"
}
21 changes: 21 additions & 0 deletions Build.md
@@ -0,0 +1,21 @@
# Book Build Instructions

To build the book for local development run
```
./build-book.sh
```

To copy results to the `gh-pages` branch and push run
```
./push-book.sh
```

## GCP

Using Jupyter launched from a remote Visual Code Studio session inside GCP Cloud-Shell requires some local settings stored in `local.sh`, use the following as a template replacing the project and email with the proper vaules:
```
gcloud config set account student31@class.internet2.edu
export GOOGLE_CLOUD_PROJECT=just-armor-301114
export DEVSHELL_PROJECT_ID=$GOOGLE_CLOUD_PROJECT
gcloud config set project $GOOGLE_CLOUD_PROJECT
```
Binary file removed content/.DS_Store
Binary file not shown.

This file was deleted.

Binary file removed content/AWS/images/.DS_Store
Binary file not shown.

This file was deleted.

This file was deleted.

0 comments on commit ddb1356

Please sign in to comment.