Deploy a track
Make your track ready to go.
This guide explains how to deploy a track to Instruqt from the Instruqt CLI.
Tracks built or updated from the Web UI are automatically redeployed after any change. No further actions are required.
💻 Instruqt CLI
Deployment from Instruqt CLI involves pushing your local track to the Instruqt platform. Take the following steps to push the track:
- 1.Move into your track directory:cd DIRECTORY_NAME⇨ Replace
DIRECTORY_NAME
with your track directory. - 2.Enter the following command:instruqt track push↳ Instruqt shows this output:==> Loading track files...OK==> Checking challengesOK==> Checking tabsOK==> Checking scriptsOK==> Checking for leftover *.remote filesOK==> Reading track definitionOK==> Checking deltasOK==> Pushing trackOK==> Pushing assetsEverything up-to-dateOK==> Updating local track:OK==> Building track 'TEAM/TRACK_NAME' (ID: TRACK_ID)Track URL: https://play.instruqt.com/TEAM/tracks/TRACK_NAMEOK⇨
TEAM
,TRACK_NAME
, andTRACK_ID
will be your team, track name, and track id. ↳ As you can see in line 22, the track is automatically re-build as part of the push.
Last modified 1mo ago