f131198feb
Rebrand Agora to Eranos and strip the non-Grin rails. Add Grin donations: a GoblinPay client + GrinPayDialog, on-chain payment-proof verification (receiver-sig + kernel-on-chain + dedupe), and a proof-verified campaign tally (kind 3414). Shift the brand from orange to gold. 118 tests green.
31 lines
645 B
YAML
31 lines
645 B
YAML
services:
|
|
web:
|
|
image: nginx:alpine
|
|
ports:
|
|
- "8083:80"
|
|
volumes:
|
|
- ./nginx.dev.conf:/etc/nginx/conf.d/default.conf:ro
|
|
- ./dist:/usr/share/nginx/html:ro
|
|
restart: unless-stopped
|
|
depends_on:
|
|
- vite
|
|
networks:
|
|
- eranos-network
|
|
|
|
vite:
|
|
image: node:22-alpine
|
|
working_dir: /app
|
|
# Use host node_modules so new dependencies are picked up after install.
|
|
command: sh -c "npm install && npm run dev"
|
|
volumes:
|
|
- .:/app
|
|
environment:
|
|
- NODE_ENV=development
|
|
networks:
|
|
- eranos-network
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
eranos-network:
|
|
driver: bridge
|