commandby moma1992

Status

Check health status of development and deployed app

Installs: 0
Used in: 5 repos
Updated: 2d ago
$npx ai-builder add command moma1992/status

Installs to .claude/commands/status.md

# Check App Status

I'll check the status of your local development server and deployed Databricks app.

## Local Development Server Status

Check if the development server is running:

```bash
# Check if development servers are running
ps aux | grep -E "(watch\.sh|uvicorn|vite)" | grep -v grep

# Check PID file
if [ -f /tmp/databricks-app-watch.pid ]; then
  echo "Dev server PID: $(cat /tmp/databricks-app-watch.pid)"
else
  echo "Dev server not running"
fi
```

## Deployed App Status

Check the status of your deployed Databricks app:

```bash
./app_status.sh
```

## 📊 Status Summary

I'll provide a clean status report with the current state of both your local development environment and deployed app, showing URLs only when services are actually running.