setup-dev
Audited by Runlayer on Feb 24, 2026
Malicious tool definition detected
### Shell Configuration The user's shell MUST have devenv on PATH and direnv hooked in. Check and fix: ```bash # Check if already configured grep -q "sentry-devenv" ~/.zshrc 2>/dev/null || grep -q "sentry-devenv" ~/.bashrc 2>/dev/null ``` If not configured, add to the appropriate shell config (`~/.zshrc` for zsh, `~/.bashrc` for bash): ```bash # devenv export PATH="$HOME/.local/share/sentry-devenv/bin:$PATH" # direnv eval "$(direnv hook zsh)" # or: eval "$(direnv hook bash)" ``` **Tell the user
### Create Superuser ```bash .venv/bin/sentry createuser --superuser --email admin@sentry.io --password admin --no-input ``` ## Step 7: Start the Dev Server ```bash devservices serve ``` Or directly: ```bash .venv/bin/sentry devserver ``` ### What to Expect on Startup **Kafka topic warnings are normal.** On first start, you'll see many lines like: ``` [WARNING] sentry.batching-kafka-consumer: Topic 'taskworker' or its partitions are not ready, retrying...
Tool passed security scan