Guides and Tutorials
Practical flows for first-time teams using both the dashboard and CLI.
Tutorial: First Project Setup
- Sign in on the dashboard and ensure you belong to an organization.
- Install envx CLI globally from npm.
- Run CLI login to authenticate your local machine.
- Run init to choose organization, project, and default environment.
- Pull variables, edit locally, then push a new version with changelog.
npm i -g envxtool-cli
envx login
envx init
envx pull
envx push --changelog "Add STRIPE_WEBHOOK_SECRET"Tutorial: Deploy to Git Provider
- Authorize your project with GitHub or GitLab.
- Register the repository origin URL.
- Deploy to action or environment target.
envx githost authorize github
envx githost add app-repo https://github.com/acme/app
envx githost deploy app-repo action -e productionFor flags and target semantics, see Git Host Integration.