Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add codespaces configuration #13

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .devcontainer/nb-to-package/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
{
"name": "Notebooks to Packages",
"image": "ghcr.io/uw-ssec/minimal:latest",
Copy link
Member

@scottyhq scottyhq Aug 1, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What's in this image? Can we instead just point to the current CryoCloud image? (Or what packages are not in there that you'd need for this tutorial) https://github.com/CryoInTheCloud/hub-image

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This image is lean and has pixi installed. This tutorial doesn't really need anything fancy :)

"customizations": {
"vscode": {
"extensions": ["ms-toolsai.jupyter", "ms-python.python"]
},
"codespaces": {
"openFiles": ["book/tutorials/nb-to-package/index.md"]
}
}
}
Loading