lizard add

Add a database, service, or repo to the project.

Usage

lizard add [types...] [flags]

Flags

FlagDescription
-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-deployAttach repo but skip the first build
--listShow available database types

Examples

Create a service from a GitHub repo

lizard add -r your-org/your-app

This 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 types

Create an empty service

lizard add -s worker

Name a service and seed variables

lizard add -r your-org/monorepo -n api

See 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