torc 0.22.2

Workflow management system
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Redirecting to Torc Documentation</title>
  <script>
    // Redirect to the latest release, falling back to dev if no releases exist
    fetch('versions.json')
      .then(r => r.json())
      .then(data => {
        const target = data.latest_release
          ? data.latest_release + '/'
          : 'latest/';
        window.location.replace(target);
      })
      .catch(() => {
        // Fallback if versions.json doesn't exist or fails to load
        window.location.replace('latest/');
      });
  </script>
  <noscript>
    <meta http-equiv="refresh" content="0; url=latest/">
  </noscript>
</head>
<body>
  <p>Redirecting to <a href="latest/">documentation</a>...</p>
</body>
</html>