```
# Stop any existing rabbitmq services if they exist
nix develop
nix run .#rabbitmq-up
# Should show that it's bound to 5672, and listening
tail -f $HOME/.local/share/RabbitMQ/logs/comm.log
# Running it again should do nothing
nix run .#rabbitmq-up
# Cleanup services, optional
pkill rabbitmq-server beam.smp
```