Two Small Clouds

Control Dashboard

Signed out

Account

Setup status

0Sites
0Environments
0SSH keys
0Deploy tokens

Pilot path

First real site

Pilot guide

Sign in to load the guided setup path.

Signed-in user

Operational next steps

  • Start with tsc launch; it initializes the project, completes account setup, and confirms the target before upload.
  • Use tsc site register and tsc env add for registry changes.
  • Use tsc launch, tsc deploy, tsc restore, and tsc sync-files for Drupal operations.
  • Use CI Setup when you need a browser bridge for deploy tokens and provider templates.

Sites

Registry

CLI-first registry

tsc site register --name "Client site"
tsc env add --name Production --profile drupal-basic
tsc site rename site-abc12345 --name "New name"
tsc env rename Production --name Stage

Environments

Deployments

Status and rollback

Support

Tickets

Create ticket

Organisation

Access and members

Create an organisation

Request access

CI setup

Deploy tokens and provider templates

CLI equivalent

tsc deploy-tokens create --environment Production --name "Main branch"
tsc ci-template --provider github-actions --environment Production --branch main

Create deploy token

Generate provider template


          

CLI

Primary workflow

Install and initialise

Install the CLI once in ~/.tsc/client, then initialise each Drupal project with its own .tsc/config.

./tsc install --bin-dir ~/.local/bin
cd /path/to/drupal-site
tsc launch

Command glossary

install
Installs the client in ~/.tsc/client and a launcher on PATH.
uninstall
Removes the client and launcher while preserving global config and login data.
init
Detects Drupal defaults and writes .tsc/config.
settings
Adds the Drupal environment settings block needed by Docker Compose and hosted deploys.
setup
Optional account-only sign-in, organisation, and SSH-key setup.
version
Prints the global client release version.
update
Updates the globally installed client from the public update feed.
clean
Removes generated local client state; use --dry-run first.

First useful run

cd /path/to/drupal-site
tsc launch