Initial commit: svg frontend

This commit is contained in:
greebo
2026-03-19 13:42:23 +03:00
commit 89e52e3193
31 changed files with 3425 additions and 0 deletions

13
docker-compose.yml Normal file
View File

@@ -0,0 +1,13 @@
services:
svg-service-front:
container_name: svg-service-front
build:
context: .
dockerfile: Dockerfile
args:
VITE_FRONTEND_PORT: ${VITE_FRONTEND_PORT}
env_file:
- .env
ports:
- "${VITE_FRONTEND_PORT}:${VITE_FRONTEND_PORT}"
restart: unless-stopped