github.com/moov-io/imagecashletter@v0.10.1/docs/usage-binary.md (about)

     1  ---
     2  layout: page
     3  title: Binary distribution
     4  hide_hero: true
     5  show_sidebar: false
     6  menubar: docs-menu
     7  ---
     8  
     9  # Binary distribution
    10  
    11  Download the [latest Moov ImageCashLetter server release](https://github.com/moov-io/imagecashletter/releases) for your operating system and run it from a terminal.
    12  
    13  ```sh
    14  $ ./imagecashletter-darwin-amd64
    15  ts=2019-06-20T23:23:44.870717Z caller=main.go:75 startup="Starting imagecashletter server version v0.2.0"
    16  ts=2019-06-20T23:23:44.871623Z caller=main.go:135 transport=HTTP addr=:8083
    17  ts=2019-06-20T23:23:44.871692Z caller=main.go:125 admin="listening on :9093"
    18  ```
    19  
    20  ## Connecting to Moov ImageCashLetter
    21  
    22  The Moov ImageCashLetter service will be running on port `8083` (with an admin port on `9093`).
    23  
    24  Confirm that the service is running by issuing the following command or simply visiting [localhost:8083/ping](http://localhost:8083/ping) in your browser.
    25  
    26  ```bash
    27  $ curl http://localhost:8083/ping
    28  PONG
    29  
    30  $ curl http://localhost:8083/files
    31  null
    32  ```