- Clone all 5 Zonemaster component repos (LDNS, Engine, CLI, Backend, GUI) - Dockerfile.backend: 8-stage multi-stage build LDNS→Engine→CLI→Backend - Dockerfile.gui: Astro static build served via nginx - docker-compose.yml: backend (internal) + frontend (port 5353) - nginx.conf: root redirects to /es/, /api/ proxied to backend - zonemaster-gui/config.ts: defaultLanguage set to 'es' (Spanish) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
59 lines
691 B
Plaintext
59 lines
691 B
Plaintext
# See http://help.github.com/ignore-files/ for more about ignoring files.
|
|
|
|
# build output
|
|
dist/
|
|
public/
|
|
|
|
# generated types
|
|
.astro/
|
|
|
|
# dependencies
|
|
/node_modules
|
|
|
|
# logs
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# environment variables
|
|
.env
|
|
.env.production
|
|
|
|
# IDEs and editors
|
|
/.idea
|
|
.project
|
|
.classpath
|
|
.c9/
|
|
*.launch
|
|
.settings/
|
|
*.sublime-workspace
|
|
.vscode/*
|
|
!.vscode/settings.json
|
|
!.vscode/tasks.json
|
|
!.vscode/launch.json
|
|
!.vscode/extensions.json
|
|
|
|
# e2e
|
|
/e2e/*.js
|
|
/e2e/*.map
|
|
.tmp
|
|
.e2e-chrome-profile/
|
|
|
|
# Emacs backup files
|
|
*~
|
|
|
|
# Playwright
|
|
node_modules/
|
|
/test-results/
|
|
/playwright-report/
|
|
/blob-report/
|
|
/playwright/.cache/
|
|
vendor/
|
|
|
|
# OS
|
|
.DS_store
|
|
|
|
*storybook.log
|
|
*.zip
|