Initial Commit
This commit is contained in:
8
.gitmodules
vendored
Normal file
8
.gitmodules
vendored
Normal 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
1
backend
Submodule
Submodule backend added at 31163088be
23
docker-compose.yml
Normal file
23
docker-compose.yml
Normal 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
1
frontend
Submodule
Submodule frontend added at f04b4089f7
Reference in New Issue
Block a user