From f89b7e05db5d4f29e152344b2cd4a719dd5d617c Mon Sep 17 00:00:00 2001 From: Tu Nombre Date: Mon, 10 Feb 2025 12:06:48 -0600 Subject: [PATCH] devcontainer --- .devcontainer/devcontainer.json | 16 ++++++++++++++++ .gitignore | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..f6fde72 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,16 @@ +{ + "name": "Servicio Social API", + "dockerFile": "../Dockerfile", + "appPort": [3000], + "postCreateCommand": "npm install", + "extensions": [ + "dbaeumer.vscode-eslint", + "ms-azuretools.vscode-docker", + "esbenp.prettier-vscode" + ], + "settings": { + "terminal.integrated.shell.linux": "/bin/bash" + }, + "remoteUser": "node" + } + \ No newline at end of file diff --git a/.gitignore b/.gitignore index d0bdfe6..87f0f45 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,4 @@ node_modules/ cred.json server/uploads/* -.devcontainer \ No newline at end of file +#.devcontainer \ No newline at end of file