first commit

This commit is contained in:
2024-05-16 16:05:41 +02:00
commit adf8283ae0
197 changed files with 26666 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
version: '3.1'
services:
db:
image: mongo
ports:
- "27017:27017"
volumes:
- ./data:/data/db
backend:
image: node:20
working_dir: /backend
volumes:
- ./backend:/backend
ports:
- "3000:3000"
command: ["npm", "run", "dev"]
depends_on:
- db