Skip to content

Commit aa8aa7f

Browse files
authored
Update overview.md
1 parent bceb7ad commit aa8aa7f

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

docs/cli/overview.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -179,26 +179,25 @@ Manage multiple environments, similar to AWS CLI profiles:
179179

180180
```bash
181181
# Create profiles
182-
epilot profile create dev --server https://entity.dev.sls.epilot.io --token <dev-token>
183-
epilot profile create staging --server https://entity.staging.sls.epilot.io --token <staging-token>
182+
epilot profile create sandbox --token <sandbox-token>
184183
epilot profile create prod --token <prod-token>
185184

186185
# Switch active profile
187-
epilot profile use dev
186+
epilot profile use sandbox
188187

189188
# Use per-command
190-
epilot entity listSchemas --profile staging
189+
epilot entity listSchemas --profile sandbox
191190

192191
# Or via environment variable
193-
EPILOT_PROFILE=dev epilot entity listSchemas
192+
EPILOT_PROFILE=sandbox epilot entity listSchemas
194193

195194
# List / show / delete
196195
epilot profile list
197196
epilot profile show dev
198197
epilot profile delete dev
199198
```
200199

201-
Profiles store server URL, auth token, org ID, and custom headers in `~/.config/epilot/profiles.json`.
200+
Profiles store auth token, server URL, and custom headers in `~/.config/epilot/profiles.json`.
202201

203202
## Interactive mode
204203

0 commit comments

Comments
 (0)