Initial Commit

This commit is contained in:
R40fendt
2026-01-28 19:08:50 +01:00
commit 755064fa6a
4 changed files with 33 additions and 0 deletions

8
.gitmodules vendored Normal file
View File

@@ -0,0 +1,8 @@
[submodule "frontend"]
path = frontend
url = git@github.com:R40fendt/ritzenbergen-frontend.git
branch = nestjs
[submodule "backend"]
path = backend
url = git@github.com:R40fendt/ritzenbergen-backend.git
branch = nestjs

1
backend Submodule

Submodule backend added at 31163088be

23
docker-compose.yml Normal file
View File

@@ -0,0 +1,23 @@
services:
backend:
build:
context: ./backend
dockerfile: Dockerfile.dev
volumes:
- ./backend:/app
- /app/node_modules
ports:
- "3000:3000"
frontend:
build:
context: ./frontend
dockerfile: Dockerfile.dev
volumes:
- ./frontend:/app
- /app/node_modules
ports:
- "1420:1420"
depends_on:
- backend

1
frontend Submodule

Submodule frontend added at f04b4089f7