Initial commit — Aspekter VA email builder

Full project: Svelte 5 frontend, Vite 7 backend API,
Pug email templates (email-gen), Docker deployment.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Sergey Zotov
2026-04-13 01:20:24 +05:00
commit c090bfcf47
61 changed files with 18907 additions and 0 deletions

24
docker-compose.prod.yml Normal file
View File

@@ -0,0 +1,24 @@
services:
builder:
image: vaaspekter-builder
container_name: va-builder
environment:
- EMAIL_GEN_API_URL=http://email-gen-api:8787
- NODE_OPTIONS=--max-old-space-size=3072
ports:
- "127.0.0.1:6001:5173"
volumes:
- ./data:/app/data
- ./email-gen:/email-gen
restart: unless-stopped
depends_on:
- email-gen-api
email-gen-api:
image: vaaspekter-email-gen-api
container_name: va-email-gen-api
environment:
- EMAIL_GEN_ROOT=/workspace/email-gen
volumes:
- ./email-gen:/workspace/email-gen
restart: unless-stopped