Overview

Purpose: Sets up Bugster configuration in your repository for the first time. When to use:
  • Once per repository - typically done by one team member
  • When starting a new project with Bugster
  • If you need to reconfigure project settings
Important notes:
  • Creates .bugster/ directory with project configuration
  • Must be committed to git for CI/CD integration
  • Requires API key (will prompt for authentication if needed)
  • Safe to re-run (will ask before overwriting existing config)

CLI Reference

CommandDescriptionExample
bugster initInitialize with interactive promptsbugster init
bugster init --api-key <key>Initialize with specific API keybugster init --api-key bugster_abc123...
bugster init --project-name <name>Set custom project namebugster init --project-name "My App"
bugster init --url <url>Set application URLbugster init --url http://localhost:3000
bugster init --user <username> --password <pwd>Configure login credentialsbugster init --user admin --password secret
bugster init --no-credentialsSkip credential setup entirelybugster init --no-credentials

Flags

FlagDescriptionExample
--api-keyBugster API key (starts with ‘bugster_‘)--api-key bugster_org_abc...
--project-nameName for your project--project-name "E-commerce App"
--urlBase URL of your application--url https://staging.myapp.com
--userUsername for login credentials--user testuser@example.com
--passwordPassword for login credentials--password mypassword123
--credential-nameName for credential entry (default: admin)--credential-name staging
--no-credentialsSkip credential setup entirely--no-credentials
--bypass-protectionProtection bypass secret for deployment platforms--bypass-protection abc123...