Initial Commit

This commit is contained in:
Christian Risi
2024-12-06 11:48:08 +00:00
parent 6845681c03
commit 7ffa84fa3e
6 changed files with 64 additions and 11 deletions

3
.devcontainer/DOCKERFILE Normal file
View File

@@ -0,0 +1,3 @@
FROM denoland/deno
RUN apt update
RUN apt install git -y

View File

@@ -0,0 +1,44 @@
{
// Displayed name
"name": "Deno-Message-Utils",
// Image to be used
"build": {
"dockerfile": "DOCKERFILE"
},
// Customization
"customizations": {
"vscode": {
"extensions": [
"fabiospampinato.vscode-highlight",
"fabiospampinato.vscode-todo-plus"
]
}
},
// Env in container
"containerEnv": {
},
// Mounts in container
"mounts": [
{
"source": "${localWorkspaceFolder}",
"target": "/workspace",
"type": "bind"
}
],
// The WorkspaceFolder inside container
"workspaceFolder": "/workspace",
// RunArgs
"runArgs": [
"--name",
"Typescript-MessageUtils"
]
}