From 4a7d60b3c7246d16cf12c4a7a28b7d450e922520 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 20 Jun 2025 02:06:21 +0000 Subject: [PATCH 1/4] Bump next in /frontend in the npm_and_yarn group across 1 directory Bumps the npm_and_yarn group with 1 update in the /frontend directory: [next](https://github.com/vercel/next.js). Updates `next` from 13.5.2 to 15.2.4 - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v13.5.2...v15.2.4) --- updated-dependencies: - dependency-name: next dependency-version: 15.2.4 dependency-type: direct:production dependency-group: npm_and_yarn ... Signed-off-by: dependabot[bot] --- frontend/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/package.json b/frontend/package.json index 9324583..ca28cd3 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -9,7 +9,7 @@ "lint": "next lint" }, "dependencies": { - "next": "13.5.2", + "next": "14.2.30", "react": "18.2.0", "react-dom": "18.2.0" }, From b24716ba67728ad487b9c890a948eb03f4adaa5e Mon Sep 17 00:00:00 2001 From: Web4 <167559384+Web4application@users.noreply.github.com> Date: Fri, 20 Jun 2025 06:25:16 +0200 Subject: [PATCH 2/4] Create .devcontainer.json Signed-off-by: Web4 <167559384+Web4application@users.noreply.github.com> --- .devcontainer.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .devcontainer.json diff --git a/.devcontainer.json b/.devcontainer.json new file mode 100644 index 0000000..3ef51df --- /dev/null +++ b/.devcontainer.json @@ -0,0 +1,25 @@ +{ + "name": "Enclov-AI Dev Container", + "dockerFile": "Dockerfile", + + "settings": { + "terminal.integrated.shell.linux": "/bin/bash", + "python.pythonPath": "/usr/local/bin/python", + "editor.formatOnSave": true + }, + + "extensions": [ + "ms-python.python", + "ms-toolsai.jupyter", + "esbenp.prettier-vscode", + "dbaeumer.vscode-eslint", + "formulahendry.auto-close-tag", + "formulahendry.auto-rename-tag" + ], + + "forwardPorts": [3000, 8000, 8501], // React / FastAPI / Streamlit or similar + + "postCreateCommand": "pip install -r requirements.txt && npm install", + + "remoteUser": "vscode" +} From 2a113b8672fff3797bde747d79c5a2501026b827 Mon Sep 17 00:00:00 2001 From: Web4 <167559384+Web4application@users.noreply.github.com> Date: Fri, 20 Jun 2025 06:26:24 +0200 Subject: [PATCH 3/4] Rename .devcontainer.json to .devcontainer/devcontainer.json Signed-off-by: Web4 <167559384+Web4application@users.noreply.github.com> --- .devcontainer.json => .devcontainer/devcontainer.json | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .devcontainer.json => .devcontainer/devcontainer.json (100%) diff --git a/.devcontainer.json b/.devcontainer/devcontainer.json similarity index 100% rename from .devcontainer.json rename to .devcontainer/devcontainer.json From 3c02ca3d8b58e07661827380a5ac1e80ae48353d Mon Sep 17 00:00:00 2001 From: Web4 <167559384+Web4application@users.noreply.github.com> Date: Fri, 20 Jun 2025 06:26:45 +0200 Subject: [PATCH 4/4] Create Dockerfile Signed-off-by: Web4 <167559384+Web4application@users.noreply.github.com> --- .devcontainer/Dockerfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .devcontainer/Dockerfile diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 0000000..619b893 --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1,12 @@ +FROM mcr.microsoft.com/devcontainers/python:3.11 + +# Install Node.js and npm +RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - \ + && apt-get install -y nodejs + +# Install global tools if needed (optional) +RUN npm install -g serve + +# Set up Python packages early to cache them in Docker layer +COPY requirements.txt /tmp/requirements.txt +RUN pip install --upgrade pip && pip install -r /tmp/requirements.txt