sitectl libops create organization \
--name "Library" \
--location LOCATION_US \
--region us-central1
sitectl libops create project \
--organization-id "$ORGANIZATION_ID" \
--name "Digital Collections" \
--region us-central1 \
--zone us-central1-f \
--machine-type e2-standard-2 \
--disk-size-gb 20
sitectl libops create site \
--project-id "$PROJECT_ID" \
--name production \
--github-repository git@github.com:example/collections.git \
--github-ref heads/main \
--compose-path /mnt/disks/data/compose \
--compose-file docker-compose.yml \
--application-type islandora \
--up-cmd "make up" \
--init-cmd "make init-if-needed" \
--rollout-cmd "make rollout"