first commit

This commit is contained in:
Hussar
2026-04-12 16:43:45 +01:00
commit 9213df4828
79 changed files with 2204 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
{
"name": "fog-expedition-devcontainer",
"dockerComposeFile": [
"../docker-compose.yml",
"docker-compose.devcontainer.yml"
],
"service": "workspace",
"workspaceFolder": "/workspaces/fog",
"runServices": ["workspace", "postgres", "redis"],
"shutdownAction": "stopCompose",
"remoteUser": "node",
"features": {
"ghcr.io/devcontainers/features/docker-outside-of-docker:1": {}
},
"customizations": {
"vscode": {
"extensions": [
"nrwl.angular-console",
"angular.ng-template",
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint",
"Prisma.prisma"
],
"settings": {
"editor.formatOnSave": true,
"files.eol": "\n"
}
}
},
"forwardPorts": [3333, 4200, 5432, 6379],
"postCreateCommand": "npm install",
"postStartCommand": "echo 'Devcontainer ready. Run: npm run start:api and npm run start:panel'"
}

View File

@@ -0,0 +1,13 @@
version: "3.9"
services:
workspace:
image: mcr.microsoft.com/devcontainers/javascript-node:1-20-bookworm
command: sleep infinity
volumes:
- ..:/workspaces/fog:cached
depends_on:
postgres:
condition: service_healthy
redis:
condition: service_healthy