From 70d1b02447765d65a2560be067980c24325181b3 Mon Sep 17 00:00:00 2001 From: Conan Scott Date: Wed, 4 Mar 2026 10:14:22 +0000 Subject: [PATCH] Add env.example --- env.example | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 env.example diff --git a/env.example b/env.example new file mode 100644 index 0000000..7307f55 --- /dev/null +++ b/env.example @@ -0,0 +1,26 @@ +# ST Flow Test Harness — Environment Configuration +# Copy to .env and fill in values for your environment. +# .env is gitignored — never commit credentials. + +# ST Admin API +ST_HOST=192.168.0.245 +ST_ADMIN_PORT=444 +ST_ADMIN_USER=admin +ST_ADMIN_PASS= + +# ST SFTP (upload account) +ST_SFTP_HOST=192.168.0.245 +ST_SFTP_PORT=8022 +ST_SFTP_USER=conan +ST_SFTP_PASS= +ST_SFTP_UPLOAD_DIR=/skill-test + +# Partner destination (where ST delivers after routing) +PARTNER_SSH_HOST= +PARTNER_SSH_PORT=2222 +PARTNER_SSH_USER=claw +PARTNER_SSH_KEY=~/.ssh/id_rsa_clawdbox +PARTNER_DEST_DIR=/data/st-test + +# Test timing +ROUTING_TIMEOUT_SEC=30