Ajout des fichiers de base pour le projet.

This commit is contained in:
2025-08-12 17:18:10 +00:00
parent 0695d2ca1e
commit 14e69e1f61
20 changed files with 2087 additions and 0 deletions

7
.devcontainer/Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM node:24
WORKDIR /app
RUN apt update &&\
apt install git curl unzip -y &&\
curl -fsSL https://bun.sh/install | bash

View File

@ -0,0 +1,13 @@
{
"workspaceFolder": "/workspace",
"workspaceMount": "source=${localWorkspaceFolder},target=/workspace,type=bind,Z",
"runArgs": ["--network=dev-network"],
"build": {
"dockerfile": "Dockerfile"
},
"customizations": {
"vscode": {
"extensions": ["oxc.oxc-vscode", "esbenp.prettier-vscode"]
}
}
}