When you run in development, guard watches the file system for code edits and restarts the Hanami server when changes occur.

    Hanami takes an “outside the framework” approach to code reloading. This has several advantages:

    • file system watching is delegated to .
    • if the hanami-reloader gem is not present (which is true in production), code reloading logic is eliminated.

    If you have an existing console session and make a code change, you can use your updated code via the reload helper:

    1. Reloading...