Tawa provides private Git hosting via Forgejo at git.insureco.io. Push to deploy — no CI config needed.
tawa login authenticates both Bio-ID and Forgejo in a single flow:
tawa login
Create a repository with an auto-deploy webhook:
tawa git create my-service
Then add the remote and push:
git remote add origin [email protected]:username/my-service.git
git push -u origin main
That first push triggers the builder automatically — your service will be built, deployed, and live within minutes.
When you create a repo with tawa git create, the CLI registers a webhook on Forgejo that notifies the builder on every push to the default branch:
main (or master)NOTE: The webhook only fires on pushes to the default branch. Pushes to feature branches do not trigger a deploy.
| Method | How | Best for |
|---|---|---|
tawa login | OAuth2 flow | Day-to-day development |
tawa git login <token> | Personal Access Token | CI/headless environments |
| SSH keys | Add public key in git.insureco.io user settings | Git push/pull |
| Web SSO | Sign in to git.insureco.io via Bio-ID | Browsing repos |
git.insureco.io → Settings → Applications → Generate New Tokentawa git login <token>
Or set the FORGEJO_TOKEN environment variable for CI systems.
| Feature | Forgejo (git.insureco.io) | GitHub |
|---|---|---|
| Auto-deploy on push | Yes — webhook on default branch push | No — use tawa deploy manually |
| SSO | Bio-ID (same identity as Tawa) | Separate authentication |
| Setup command | tawa git create <name> | tawa link |
TIP: If you want push-to-deploy without configuring CI, Forgejo is the simplest path. If your team already uses GitHub, use
tawa linkto connect the repo and deploy manually withtawa deploy.
| Command | Description |
|---|---|
tawa git create my-site | Create a repo on git.insureco.io with auto-deploy webhook |
tawa git login <token> | Authenticate with a Personal Access Token |
tawa link | Link an existing GitHub repo to the builder |
tawa login | Full OAuth flow — authenticates Bio-ID and Forgejo |
tawa login --skip-git | Authenticate Bio-ID only, skip Forgejo |
Last updated: February 28, 2026