Skip to content

Commit 5b1a986

Browse files
feat: add vscode extensions (#5)
* fix: containerfiles -> containers * feat: add vscode extensions
1 parent e2c5818 commit 5b1a986

File tree

5 files changed

+31
-7
lines changed

5 files changed

+31
-7
lines changed

.vscode/extensions.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"recommendations": [
3+
"asdine.cue",
4+
"donjayamanne.python-extension-pack",
5+
"redhat.vscode-yaml",
6+
"sclu1034.justfile",
7+
"ms-vscode.makefile-tools",
8+
"hashicorp.terraform",
9+
"ms-python.black-formatter",
10+
"googlecloudtools.cloudcode",
11+
"ms-kubernetes-tools.vscode-kubernetes-tools",
12+
"ms-vsliveshare.vsli",
13+
"eamodio.gitlens",
14+
"GitHub.vscode-pull-request-github",
15+
"github.vscode-github-actions",
16+
"GitHub.remotehub",
17+
"ms-azuretools.vscode-docker",
18+
"ms-toolsai.jupyter",
19+
"iterative.dvc",
20+
"njzy.stats-bar",
21+
"vscode-icons-team.vscode-icons",
22+
"poimandres.theme-poimandres"
23+
]
24+
}

containers/conda-lock.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# To update a single package to the latest version compatible with the version constraints in the source:
1010
# conda-lock lock --lockfile conda-lock.yml --update PACKAGE
1111
# To re-solve the entire environment, e.g. after changing a version constraint in the source file:
12-
# conda-lock -f containerfiles/environment.yml --lockfile conda-lock.yml
12+
# conda-lock -f containers/environment.yml --lockfile conda-lock.yml
1313
version: 1
1414
metadata:
1515
content_hash:
@@ -20,7 +20,7 @@ metadata:
2020
platforms:
2121
- linux-64
2222
sources:
23-
- containerfiles/environment.yml
23+
- containers/environment.yml
2424
package:
2525
- name: _libgcc_mutex
2626
version: '0.1'

justfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,8 @@ delete:
153153
lock:
154154
conda-lock \
155155
--conda mamba \
156-
--lockfile containerfiles/conda-lock.yml \
157-
--virtual-package-spec containerfiles/virtual-packages.yml \
156+
--lockfile containers/conda-lock.yml \
157+
--virtual-package-spec containers/virtual-packages.yml \
158158
--log-level DEBUG \
159-
-f containerfiles/environment.yml \
159+
-f containers/environment.yml \
160160
-p linux-64

skaffold.cue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ config: {
1111
deploy: kubectl: defaultNamespace: "scidev"
1212
build: artifacts: [{
1313
image: "ghcr.io/sciexp/scidev"
14-
docker: dockerfile: "containerfiles/Containerfile.scidev"
14+
docker: dockerfile: "containers/Containerfile.scidev"
1515
}]
1616
profiles: [{
1717
name: "dev"

skaffold.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ build:
1212
artifacts:
1313
- image: ghcr.io/sciexp/scidev
1414
docker:
15-
dockerfile: containerfiles/Containerfile.scidev
15+
dockerfile: containers/Containerfile.scidev
1616
profiles:
1717
- name: dev
1818
deploy:

0 commit comments

Comments
 (0)