```bash
brew install rustup postgres # Install Rustup and psql command line tool brew cask install docker # Install Docker
cargo install sqlx-cli # Install sqlx CLI, used by init_db.sh
to create & migrate database
./scripts/initdb.sh # Starts and migrates a Postgres database using Docker
./scripts/initcollector.sh # Starts an Open Telemetry collector using Docker
cargo run # Compiles and runs the Hermod project using an edge Rust build (aka cargo r)
```
Other useful commands
```bash
cargo install sqlx-cli # (Optionally) Install sqlx CLI cargo install bunyan # (Optionally) install Bunyan log formatter
cargo doc --open # Compiles and opens project documentation (aka cargo d) cargo test # Runs unit and integration tests (aka cargo t)
cargo r | bunyan # Compiles and runs the project, piping log output to the Bunyan formatter TEST_LOG=true cargo t | bunyan # Runs tests with logging, piping output to Bunyan
./scripts/stop_containers.sh # Stops all running Docker containers
sqlx mig add YOURMIGRATIONNAME # Create a new sqlx migration sqlx mig run # Run your new migration cargo sqlx prepare -- --lib # Rebuild sqlx's cache used for compile-time SQL guarantees cargo sqlx prepare --check -- --lib
docker build -t hermodapi . # Build the release image of the application (will take a *very* long time, Rust has infamously long release compilation times) docker run -p 8000:8000 hermodapi # Run the release image of the application
brew install cloc cloc configuration src tests migrations scripts
cargo llvm-cov --open --ignore-filename-regex "build.rs|src\/main.rs"
cargo tarpaullin
ulimit -n 10000 ```
sqlx migrate run
.