- Email change modal: API key + new email → verification code → confirmed - Swagger UI with proper OpenAPI spec (public/openapi.json + swagger-ui assets) - Key recovery link prominently on landing page hero section - Footer link for email change - Updated docs.html to use swagger-ui bundle
29 lines
691 B
YAML
29 lines
691 B
YAML
version: "3.8"
|
|
services:
|
|
docfast:
|
|
build: .
|
|
restart: unless-stopped
|
|
ports:
|
|
- "127.0.0.1:3100:3100"
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
environment:
|
|
- API_KEYS=${API_KEYS}
|
|
- PORT=3100
|
|
- NODE_ENV=production
|
|
- STRIPE_SECRET_KEY=${STRIPE_SECRET_KEY}
|
|
- STRIPE_WEBHOOK_SECRET=${STRIPE_WEBHOOK_SECRET}
|
|
- BASE_URL=${BASE_URL:-https://docfast.dev}
|
|
- PRO_KEYS=${PRO_KEYS}
|
|
- SMTP_HOST=host.docker.internal
|
|
- SMTP_PORT=25
|
|
- POOL_SIZE=15
|
|
- BROWSER_COUNT=1
|
|
- PAGES_PER_BROWSER=15
|
|
volumes:
|
|
- docfast-data:/app/data
|
|
mem_limit: 2560m
|
|
cpus: 1.5
|
|
|
|
volumes:
|
|
docfast-data:
|