- 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>
19 lines
384 B
Perl
19 lines
384 B
Perl
#!perl -T
|
|
use 5.006;
|
|
use strict;
|
|
use warnings FATAL => 'all';
|
|
use Test::More;
|
|
|
|
# Ensure a recent version of Test::Pod
|
|
my $min_tp = 1.22;
|
|
eval "use Test::Pod $min_tp";
|
|
plan skip_all => "Test::Pod $min_tp required for testing POD" if $@;
|
|
|
|
my @poddirs;
|
|
push @poddirs, ( -e 'lib' ? 'lib' : 'blib' );
|
|
push @poddirs, 'script';
|
|
|
|
all_pod_files_ok( all_pod_files( @poddirs ) );
|
|
|
|
done_testing;
|