Set up Bugster CLI in your project and authenticate with your account
.bugster/
directory with project configurationCommand | Description | Example |
---|---|---|
bugster init | Initialize with interactive prompts | bugster init |
bugster init --api-key <key> | Initialize with specific API key | bugster init --api-key bugster_abc123... |
bugster init --project-name <name> | Set custom project name | bugster init --project-name "My App" |
bugster init --url <url> | Set application URL | bugster init --url http://localhost:3000 |
bugster init --user <username> --password <pwd> | Configure login credentials | bugster init --user admin --password secret |
bugster init --no-credentials | Skip credential setup entirely | bugster init --no-credentials |
Flag | Description | Example |
---|---|---|
--api-key | Bugster API key (starts with ‘bugster_‘) | --api-key bugster_org_abc... |
--project-name | Name for your project | --project-name "E-commerce App" |
--url | Base URL of your application | --url https://staging.myapp.com |
--user | Username for login credentials | --user testuser@example.com |
--password | Password for login credentials | --password mypassword123 |
--credential-name | Name for credential entry (default: admin) | --credential-name staging |
--no-credentials | Skip credential setup entirely | --no-credentials |
--bypass-protection | Protection bypass secret for deployment platforms | --bypass-protection abc123... |