feat: initial commit

This commit is contained in:
2022-10-03 09:59:21 +02:00
parent 35d6accafb
commit abfaf19c47
53 changed files with 2173 additions and 153 deletions

29
docker-compose.yml Normal file
View File

@@ -0,0 +1,29 @@
services:
frontend:
build:
context: frontend/
args:
BACKEND_BASE_URL: http://localhost:8080
ports:
- "3000:80"
networks:
- front-tier
- back-tier
# configs:
# - httpd-config
backend:
build: backend/
ports:
- "8080:8080"
volumes:
- ./data:/app/data
environment:
- CORS_ALLOWED_ORIGINS=http://localhost:8080
networks:
- back-tier
networks:
# The presence of these objects is sufficient to define them
front-tier: {}
back-tier: {}