summaryrefslogtreecommitdiff
path: root/.devcontainer
diff options
context:
space:
mode:
Diffstat (limited to '.devcontainer')
-rw-r--r--.devcontainer/Dockerfile8
-rw-r--r--.devcontainer/devcontainer.json47
2 files changed, 0 insertions, 55 deletions
diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile
deleted file mode 100644
index 2f39a89..0000000
--- a/.devcontainer/Dockerfile
+++ /dev/null
@@ -1,8 +0,0 @@
-ARG VARIANT=18-bullseye
-ARG NODE_VERSION=18.16.0
-FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:${VARIANT}
-
-WORKDIR /home
-
-RUN su node -c "source /usr/local/share/nvm/nvm.sh && nvm install ${NODE_VERSION}"
-RUN su node -c "npm install -g pnpm"
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
deleted file mode 100644
index 96b1a1b..0000000
--- a/.devcontainer/devcontainer.json
+++ /dev/null
@@ -1,47 +0,0 @@
-{
- "name": "website",
- "build": {
- "dockerfile": "Dockerfile",
- "args": {
- "VARIANT": "18-bullseye",
- "NODE_VERSION": "18.16.0"
- }
- },
- "waitFor": "onCreateCommand",
-
- "updateContentCommand": "pnpm install",
- "postCreateCommand": "",
- "postAttachCommand": {
- "serve": "pnpm dev"
- },
-
- "customizations": {
- "vscode": {
- "extensions": [
- "astro-build.astro-vscode",
- "editorconfig.editorconfig",
- "dbaeumer.vscode-eslint",
- "github.vscode-github-actions",
- "me-dutour-mathieu.vscode-github-actions",
- "ecmel.vscode-html-css",
- "ms-vscode.vscode-typescript-next",
- "bierner.lit-html",
- "esbenp.prettier-vscode",
- "rvest.vs-code-prettier-eslint",
- "syler.sass-indented",
- "bradlc.vscode-tailwindcss"
- ]
- }
- },
-
- "portsAttributes": {
- "3000": {
- "label": "website",
- "onAutoForward": "openPreview"
- }
- },
-
- "forwardPorts": [3000],
-
- "remoteUser": "node"
-}