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

Sm e2e st (#502) #508

Open
wants to merge 20 commits into
base: main
Choose a base branch
from
  •  
  •  
  •  
51 changes: 51 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
//devcontainer.json
{
"name": "🤗",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/vscode/devcontainers/python:3.10",
// pip install needed python packages on creation
"postCreateCommand": "pip install -r /workspaces/notebooks/requirements.txt",
"mounts": [
// Mount the local .ssh directory so you can use SSH key-based authentication.
"source=${localEnv:HOME}/.ssh,target=/home/vscode/.ssh,type=bind,consistency=cached",
// Mount the local .gitconfig file so you can configure Git user settings.
"source=${localEnv:HOME}/.gitconfig,target=/home/vscode/.gitconfig,type=bind,consistency=cached"
],
"customizations": {
"vscode": {
"extensions": [
"ms-vsliveshare.vsliveshare",
"VisualStudioExptTeam.intellicode-api-usage-examples",
"VisualStudioExptTeam.vscodeintellicode-completions",
"VisualStudioExptTeam.vscodeintellicode-insiders",
"ms-vscode-remote.remote-ssh",
"ms-vscode-remote.remote-containers",
"ms-python.python",
"ms-python.vscode-pylance",
"ms-python.black-formatter",
"streetsidesoftware.code-spell-checker",
"yzhang.markdown-all-in-one",
"aaron-bond.better-comments",
"njpwerner.autodocstring",
"GitHub.vscode-pull-request-github",
"GitHub.codespaces",
"GitHub.vscode-github-actions",
"eamodio.gitlens",
//"GitHub.copilot",
//"GitHub.copilot-chat",
//"GitHub.copilot-labs",
"Codeium.codeium",
"ms-toolsai.datawrangler",
"ms-toolsai.jupyter-renderers",
"ms-toolsai.jupyter",
"ms-toolsai.vscode-jupyter-cell-tags",
"ms-toolsai.vscode-jupyter-slideshow",
"ms-toolsai.jupyter-keymap",

]
}
}
// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {}
}

3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Jupyter Notebook
**/.ipynb_checkpoints
**/.DS_Store
**/.DS_Store
**/course/en/chapter2/models/*
71 changes: 0 additions & 71 deletions course/de/chapter1/section10.ipynb

This file was deleted.

Loading