Implement project structure and documentation for Fog Expedition, including .mcp.json configuration, agent guidelines in AGENTS.md, and detailed project context in PROJECT_CONTEXT.md. Update .gitignore and pnpm-workspace.yaml for new dependencies and workspace management. Introduce CI monitoring skills and scripts for enhanced CI pipeline management.

This commit is contained in:
Maurycy
2026-05-06 22:55:51 +00:00
parent 3ce6a04a40
commit 308a1cf5c4
27 changed files with 3448 additions and 1 deletions

12
.devcontainer/Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM mcr.microsoft.com/devcontainers/typescript-node:1-22-bookworm
# Install pnpm globally as root, then make available to the node user
RUN corepack enable && corepack prepare pnpm@latest --activate
# Switch to non-root user (provided by base image)
USER node
# Pre-create pnpm store directory for cache mounting later if desired
RUN mkdir -p /home/node/.local/share/pnpm
ENV PNPM_HOME=/home/node/.local/share/pnpm
ENV PATH=$PNPM_HOME:$PATH

View File

@@ -0,0 +1,44 @@
{
"name": "fog-expedition",
"build": {
"dockerfile": "Dockerfile"
},
"features": {
"ghcr.io/devcontainers/features/docker-outside-of-docker:1": {},
"ghcr.io/devcontainers/features/git:1": {}
},
"forwardPorts": [3000, 4200, 5432, 6379, 443],
"portsAttributes": {
"3000": { "label": "API (Nest)" },
"4200": { "label": "Overlay (Angular)" },
"5432": { "label": "Postgres" },
"6379": { "label": "Redis" },
"443": { "label": "Caddy HTTPS" }
},
"customizations": {
"vscode": {
"extensions": [
"anthropic.claude-code",
"nrwl.angular-console",
"angular.ng-template",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"vitest.explorer",
"firsttris.vscode-jest-runner",
"ms-azuretools.vscode-docker"
],
"settings": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
}
},
"postCreateCommand": "pnpm install && pnpm approve-builds || true",
"remoteUser": "node",
"mounts": [
"source=${localEnv:HOME}/.gitconfig,target=/home/node/.gitconfig,type=bind,consistency=cached"
]
}