## projects env Manage environment variables and credentials associated with your project. Running it without flags lists variable names with their values redacted. Use `--pull` to write plaintext values to your local `.env`. Run `--pull` manually when: - You're setting up the project on a new machine, or after cloning the repo. - A teammate provisioned or rotated a resource and you need the updated credentials. - Your `.env` was deleted or corrupted and you need to restore it. > `.projects/vault/vault.json` and `.env` are both added to `.gitignore` by `stripe projects init`. Never commit either file. **Command:** `stripe projects env` ### Flags - `--pull` Sync credentials from the project vault to your local `.env`. ### Examples **List environment variable names (values redacted)** ```sh stripe projects env ``` ``` SUPABASE_URL (set) SUPABASE_ANON_KEY (set) SUPABASE_SERVICE_KEY (set) VERCEL_TOKEN (set) OPENROUTER_API_KEY (set) ``` **Sync values to your local .env file** ```sh stripe projects env --pull ```