Skip to content

Commit

Permalink
feat: change facsimilab image to main and add vscode settings
Browse files Browse the repository at this point in the history
  • Loading branch information
pranavmishra90 committed Aug 23, 2024
1 parent 68032ce commit 124da46
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
{
"image": "ghcr.io/pranavmishra90/facsimilab-full",
"image": "docker.io/pranavmishra90/facsimilab-main:latest",
"containerUser": "coder",
"mounts": [
"source=${localEnv:HOME}${localEnv:USERPROFILE}/.gitconfig,target=/home/coder/.gitconfig,type=bind,consistency=cached",
"source=${localWorkspaceFolder},target=/home/coder/work,type=bind,consistency=cached"
],
"workspaceFolder": "/home/coder/work",
"updateRemoteUserUID": true,
// "runArgs": ["--gpus", "all"],
"forwardPorts": [3334],
"postCreateCommand": ["/bin/bash"],

// If you need GPUs to be passed into the devcontainer, uncomment the following line
// "runArgs": ["--gpus", "0"],

"customizations": {
"vscode": {
"extensions": [
Expand Down
20 changes: 19 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
{
"python.analysis.typeCheckingMode": "basic"
"folders": [
{
"path": "."
}
],
"settings": {
"window.title": "${rootName}${dirty}",
"editor.tabSize": 2,
"editor.formatOnPaste": true,
"problems.visibility": false,
"python.analysis.typeCheckingMode": "basic",
"conventionalCommits.scopes": [
"code",
"dependencies",
"data",
"analysis",
"publish"
]
}
}

0 comments on commit 124da46

Please sign in to comment.