TrylleDocs
Getting Started

Quickstart

Create an account, connect the CLI, and publish a repository to Trylle.

This path takes you from a new account to a repository that can use pull requests, CI, and automations.

Create or sign in to an account

Open trylle.com, sign in with a supported OAuth provider or email, and complete any email verification prompt. Your personal workspace is ready immediately.

Create a CLI key

Open Settings → CLI, create a key, and keep the value in a secure credential manager. Trylle shows the secret at creation time.

Install the CLI

npm install -g @trylle/trylle-cli
try version

Other supported installation methods are covered in CLI installation.

Authenticate

Place the key in an environment variable outside your shell history, then save it:

try auth login
unset TRYLLE_API_KEY
try whoami

try whoami validates both the stored credential and the API connection.

Create and clone a repository

try repo create hello-trylle \
  --owner YOUR_LOGIN \
  --private \
  --auto-init \
  --default-branch main

try repo clone YOUR_LOGIN/hello-trylle
cd hello-trylle
try repo context

Open the repository

try browse repo -R YOUR_LOGIN/hello-trylle

Next workflow

Create a branch, push it, and open a pull request:

git switch -c docs/first-change
printf '# Hello Trylle\n' > README.md
git add README.md
git commit -m "docs: add project introduction"
git push -u origin HEAD
try pr create --title "docs: add project introduction" --base main

Continue with everyday CLI workflows or add a CI workflow.

On this page