Skip to content

Commit

Permalink
Add devcontainer and extensions config (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
gwenwindflower authored Sep 27, 2023
1 parent 616df94 commit 4757f79
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"name": "Python 3",
"image": "mcr.microsoft.com/devcontainers/python:1-3.10-bookworm",
"features": {
"ghcr.io/eitsupi/devcontainer-features/go-task:1": {
"version": "latest"
}
},

// "forwardPorts": [],

"postCreateCommand": "python3 -m pip install -r requirements.txt && pre-commit install && dbt deps"
}
22 changes: 22 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"recommendations": [
"github.codespaces",
"gitpod.gitpod-desktop",
"ms-vscode-remote.vscode-remote-extensionpack",
"evidence.evidence-vscode",
"GitHub.vscode-pull-request-github",
"cschleiden.vscode-github-actions",
"ms-python.python",
"ms-python.vscode-pylance",
"ms-python.black-formatter",
"ms-python.isort",
"charliermarsh.ruff",
"redhat.vscode-yaml",
"task.vscode-task",
"samuelcolvin.jinjahtml",
"bungcip.better-toml",
"tamasfe.even-better-toml",
"mechatroner.rainbow-csv",
"bastienboutonnet.vscode-dbt"
]
}

0 comments on commit 4757f79

Please sign in to comment.