diff --git a/.devcontainer/docs/Dockerfile b/.devcontainer/docs/Dockerfile deleted file mode 100644 index b15d68792f9..00000000000 --- a/.devcontainer/docs/Dockerfile +++ /dev/null @@ -1,6 +0,0 @@ -FROM node:20-alpine - -# Install git -RUN apk add --no-cache git - -RUN npm install -g docsify-cli prettier eslint diff --git a/.devcontainer/docs/devcontainer.json b/.devcontainer/docs/devcontainer.json deleted file mode 100644 index 64685148889..00000000000 --- a/.devcontainer/docs/devcontainer.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "context": "../..", - "customizations": { - "codespaces": { - "openFiles": ["docs/how-to-work-on-the-docs-theme.md"] - }, - "vscode": { - "extensions": [ - "dbaeumer.vscode-eslint", - "esbenp.prettier-vscode", - "freeCodeCamp.freecodecamp-dark-vscode-theme" - ] - } - }, - "dockerFile": "Dockerfile", - "forwardPorts": [3400], - "portsAttributes": { - "3400": { - "label": "Docs", - "onAutoForward": "openPreview" - } - }, - "postAttachCommand": "npm run docs:serve" -} diff --git a/package.json b/package.json index 3990fb7fd67..ffd50759cc5 100644 --- a/package.json +++ b/package.json @@ -48,7 +48,6 @@ "develop": "npm-run-all -p develop:*", "develop:client": "cd ./client && pnpm run develop", "develop:server": "cd ./api-server && pnpm run develop", - "docs:serve": "docsify serve ./docs -o --port 3400", "e2e": "pnpm run e2e:dev:run", "e2e:dev:run": "start-test develop 'http://localhost:3000/status/ping|http://localhost:8000' cypress:dev:run", "e2e:dev:watch": "start-test develop 'http://localhost:3000/status/ping|http://localhost:8000' cypress:dev:watch",