### Reacher Docker Logs Source: https://github.com/reacherhq/check-if-email-exists/blob/master/docs/self-hosting/install.md Example log output from the Reacher Docker container during email verification. ```log // --snip-- 2024-12-15T11:33:36.169891Z INFO reacher: Starting verification email="amaury@reacher.email" 2024-12-15T11:33:45.015130Z INFO reacher: Done verification email="amaury@reacher.email" is_reachable=Safe ``` -------------------------------- ### Build and Run from Source Source: https://github.com/reacherhq/check-if-email-exists/blob/master/backend/README.md Commands to clone the repository, navigate to the backend directory, and run the backend binary in release mode. ```bash # Download the code $ git clone https://github.com/reacherhq/check-if-email-exists $ cd check-if-email-exists/backend # Run the backend binary in release mode (slower build, but more performant). $ cargo run --release --bin reacher_backend ``` -------------------------------- ### Build From Source Source: https://github.com/reacherhq/check-if-email-exists/blob/master/cli/README.md These commands demonstrate how to clone the repository, build the project in release mode, and run the compiled binary. ```bash # Download the code $ git clone https://github.com/reacherhq/check-if-email-exists $ cd check-if-email-exists # Build in release mode $ cargo build --release # Run the binary $ ./target/release/check_if_email_exists --help ```