init: Initial Commit

This commit is contained in:
2024-01-15 20:47:37 -05:00
commit 5a2fd27aa3
28 changed files with 3416 additions and 0 deletions

23
docker-compose.dev.yml Normal file
View File

@@ -0,0 +1,23 @@
version: '3'
services:
frontend:
build:
context: ./services/frontend
target: 'develop-stage'
depends_on:
- backend
ports:
- '8000:8000'
volumes:
- './services/frontend:/app'
- /app/node_modules
command: /bin/sh -c "yarn dev"
backend:
build:
context: ./services/backend
dockerfile: Dockerfile
ports:
- 5000:5000
volumes:
- ./services/backend:/app
command: ["python", "app.py"]