Skip to content

You are viewing documentation for Instruqt 2.0 Labs - our upcoming product releasing in September 2026. For current Tracks documentation, please visit docs.instruqt.com .

Creating Labs


WIP

WIP

Terminal window
instruqt lab create my-new-lab
cd my-new-lab

Edit lab.hcl to define your lab:

resource "lab" "my_new_lab" {
title = "My New Lab"
description = "Learn something awesome"
settings {
idle_timeout {
enabled = true
timeout = 3600 # 1 hour
}
}
chapters = [
instruqt_chapter.introduction,
instruqt_chapter.hands_on,
]
}

WIP