lizard add
Add a database, service, or repo to the project.
Usage
lizard add [types...] [flags]Flags
| Flag | Description |
|---|---|
-r, --repo <owner/repo> | Create a service from a GitHub repo |
-s, --service <name> | Create an empty service |
-a, --addon <type...> | Add managed addons (postgres / redis / s3) |
-n, --name <name> | Name used in ${{name.KEY}} refs |
-v, --variables <K=V> | Seed an env var (repeatable) |
--region <code> | Region to provision in |
--no-deploy | Attach repo but skip the first build |
--list | Show available database types |
Examples
Create a service from a GitHub repo
lizard add -r your-org/your-appThis creates a github-source service, clones the repo, auto-detects the stack, builds it, and returns a live URL.
Provision addons
lizard add postgres # one addon
lizard add postgres redis s3 # several at once
lizard add --list # show available typesCreate an empty service
lizard add -s workerName a service and seed variables
lizard add -r your-org/monorepo -n apiSee also
- Deploy from GitHub — connecting repos, private access, and auto-redeploy on push
- Managed Addons — provisioning, naming, and consuming postgres/redis/s3
- lizard up — upload and deploy the current directory instead of linking a repo