Example usage
export TSMANAGER_EXTERNAL_DOMAIN=testing.mysite.com && export TSMANAGER_SERVER_PORT_DOMAIN=testenv && pnpm start // This will spin up an instance at testenv.testing.mysite.com, and you get dynamic domains at port_xxxx.testing.mysite.com
The default management port is at port 3500, this can be configured via the PORT environment variable!
The KNOWN_FILES_DIR environment variable contains where the known files of the test server are; this allows for usage of these existing files when specified via MD5 hash.
- In sane OSes, just do
export KNOWN_FILES_DIR="/my/path/here" && pnpm start
- For windows, you may use the env stuff; e.g.
$env:KNOWN_FILES_DIR="C:\Users\User\Documents\MyKnownFiles"; pnpm start