Skip to main content
CLI & Terminal

Managing Projects & Environment Variables

February 11, 20265 views0 found this helpful

Project Management

Use these commands to set up and manage your Boottify projects:

Linking a Project

  1. boottify link — links the current directory to an existing Boottify project.
  2. boottify link --project my-app — links to a specific project by name.
  3. boottify link --create — creates a new project and links it in one step.

Listing Projects

  • boottify projects list (alias: boottify p list) — shows all projects in your team.
  • boottify project switch — switch the active project for the current directory.

Environment Variables

Environment variables are encrypted and stored securely. Manage them entirely from the CLI:

  • boottify env list (alias: boottify e list) — list all variables for the current project.
  • boottify env add DATABASE_URL "postgres://..." — add a new variable.
  • boottify env add API_KEY "key" --env preview — add a variable for a specific environment.
  • boottify env pull .env.local — import variables from a local file.
  • boottify env rm DATABASE_URL — remove a variable.

Domain Management

Manage custom domains for your project:

  • boottify domains list — list all domains.
  • boottify domains add example.com — add a custom domain.
  • boottify domains verify example.com — verify DNS configuration.

Viewing Logs

Access deployment and runtime logs directly from the terminal:

  • boottify logs (alias: boottify l) — view recent logs.
  • boottify logs --follow — stream logs in real-time.
  • boottify logs --type build — view build-specific logs.

Was this article helpful?

Let us know if this article helped you find what you were looking for.