The interface was translated in en/it/es/fr via @nuxtjs/i18n. Drop the module, the locale files, and the language switcher: the UI is now static Italian text, with translation for foreign visitors left to the Google Translate browser extension instead of the app.
19 lines
539 B
YAML
19 lines
539 B
YAML
# Local testing without domains or TLS: publishes the app ports on localhost and
|
|
# leaves Caddy out. Never used in production — it must be passed explicitly:
|
|
# docker compose -f docker-compose.yml -f docker-compose.dev.yml up -d --build cms frontend
|
|
services:
|
|
database:
|
|
ports:
|
|
- "127.0.0.1:5432:5432"
|
|
|
|
cms:
|
|
ports:
|
|
- "127.0.0.1:1337:1337"
|
|
|
|
frontend:
|
|
ports:
|
|
- "127.0.0.1:3000:3000"
|
|
environment:
|
|
NUXT_PUBLIC_SITE_URL: http://localhost:3000
|
|
NUXT_PUBLIC_STRAPI_URL: http://localhost:1337
|