Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Before running the build scan and tests, you need to create a session ID. The session ID is provided to each step in order link them together as one complete cycle

See 'Generating a token' for instructions on how to generate a token

Generating a session ID in Node.js

Generating a session ID in Node.js is done using the SeaLights Node.js Agent with the -config flag

Sample command
./node_modules/.bin/slnodejs config --tokenfile "/path/to/tokenFile" --appname "myApp" --branch "master" --build "23"

See 'Node.js Command Reference - Creating a session ID' for full parameter details


Using the session ID

The session ID will be printed to the console output and a file called 'buildSessionId.txt' will be generated containing it.

The file can be used as is in the agent parameters or can be used to fill in an environment parameter to be in a command line.

Copying token to environment variable
Unix:
export SL_TOKEN_ID=`cat buildSessionId.txt`

Windows:
set /p SL_TOKEN_ID=<buildSessionId.txt

Related articles

  • No labels