kawipiko/scripts/examples.z-run

92 lines
1.7 KiB
Text
Raw Normal View History

#!/dev/null
<< examples / hello-world / archive
"${ZRUN[@]}" ':: execute / archiver / debug' \
--sources ./examples/hello-world \
--archive ./examples/hello-world.cdb \
--progress \
--debug \
"${@}" \
#
cdb -d -- ./examples/hello-world.cdb \
| tr -d '\r' \
| sed -r -e 's#^(\+[0-9]+,[0-9]+):(.+?)->#\n\1\n\2\n#' \
>| ./examples/hello-world.cdb-dump \
#
!!
<< examples / hello-world / serve
exec -- "${ZRUN[@]}" ':: execute / server / debug' \
2021-12-17 23:30:04 +00:00
\
--archive ./examples/hello-world.cdb \
--archive-inmem \
--index-all \
2021-12-17 23:30:04 +00:00
\
--processes 1 \
--threads 1 \
2021-12-17 23:30:04 +00:00
\
--debug \
2021-12-17 23:30:04 +00:00
\
"${@}" \
#
!!
<< examples / hello-world / serve / http-fast
exec -- "${ZRUN[@]}" ':: examples / hello-world / serve' \
\
--bind 127.153.215.30:8080 \
\
"${@}" \
#
!!
<< examples / hello-world / serve / http-all
exec -- "${ZRUN[@]}" ':: examples / hello-world / serve' \
\
--bind 127.153.215.30:8080 \
--bind-2 127.153.215.30:8081 \
--bind-tls 127.153.215.30:8443 \
--bind-tls-2 127.153.215.30:8444 \
--bind-quic 127.153.215.30:8445 \
--http3-alt-svc 127.153.215.30:8445 \
\
"${@}" \
#
!!
<< examples / huge / archive
exec -- "${ZRUN[@]}" ':: execute / archiver / debug' \
--sources ./.outputs/examples/huge \
--archive ./.outputs/examples/huge.cdb \
--compress gzip \
--compress-cache ./.outputs/examples/huge-compress.cache \
--sources-cache ./.outputs/examples/huge-sources.cache \
--exclude-strip \
--exclude-file-listing \
--progress \
"${@}" \
#
!!
<< examples / huge / serve
exec -- "${ZRUN[@]}" ':: execute / server / debug' \
--archive ./.outputs/examples/huge.cdb \
--archive-mmap \
--processes 1 \
--threads 1 \
--debug \
"${@}" \
#
!!