When you run Webhook Debugger & Logger outside of Apify — whether locally with Node.js or inside a Docker container — you configure the runtime through environment variables. The app automatically loads aDocumentation Index
Fetch the complete documentation index at: https://supahooks.ar27111994.dev/llms.txt
Use this file to discover all available pages before exploring further.
.env file from the current working directory on startup.
Existing process environment variables always win over values in
.env. Variables set in your shell, passed via docker run -e, or injected by a CI or container platform override anything defined in .env.Core runtime
The HTTP port the web server listens on. Change this when port
8080 is already in use on your host. Docker images and the Apify actor metadata both default to 8080.The full actor input as a JSON string. When set, this value overrides all input settings configured through the Apify Console or
INPUT.json. Use it for reproducible local or container boots where you want a fixed configuration without the Apify input system.The directory used for local storage — Apify Dataset files, Key-Value Store entries, and large payload offloads. Docker images set this to
/app/storage. Use a bind mount or volume when you need storage to persist across container restarts.Logging verbosity. Accepted values are
info and debug. Set debug during local development to see detailed request processing, forwarding, and sync activity.Set to
true to enable human-readable, colorized log output. Useful for local development and CLI demos. When unset or false, the logger emits newline-delimited JSON (NDJSON) suitable for log aggregators. The Apify actor metadata sets this to true by default.Set to
true to disable hot-reload of actor input. By default the runtime watches for input changes and applies them without restarting. Disable this when you want a fixed, deterministic configuration — for example, in automated test runs or staging deployments.Node.js environment mode. Docker images set this to
production. Set to development to enable additional logging or disable certain production-only optimizations.DuckDB storage
Override the directory where DuckDB stores its database file. Defaults to the same directory as
APIFY_LOCAL_STORAGE_DIR. Set this when you want to separate DuckDB data from the rest of actor storage.Override the DuckDB database filename. Useful when running multiple instances against the same storage directory.
Custom script worker heap
These variables control the memory ceiling for the sandboxed worker thread that runscustomScript snippets. Raise them only when your scripts are legitimately memory-intensive.
Maximum old-generation heap size for the custom script worker, in MB. Clamped to
16–256. Increase this when scripts that process large JSON bodies hit memory limits.Maximum young-generation (semi-space) heap size for the custom script worker, in MB. Clamped to
8–128.Local development example
A typical.env for local development:
Docker run example
Pass environment variables with-e flags when starting the container: