Skip to content

Latest commit

 

History

History
49 lines (42 loc) · 1.18 KB

CONFIGURATION.md

File metadata and controls

49 lines (42 loc) · 1.18 KB

ACH Web Viewer

Purpose | Configuration | Running


Configuration

Custom configuration for this application may be specified via an environment variable APP_CONFIG to a configuration file that will be merged with the default configuration file.

ACHWebViewer:
  Servers:
    Public:
      BasePath: "/ach"
      Bind:
        Address: ":8585"

  # Formatting for ACH files
  Display:
    Format: "human-readable"
    Masking:
      AccountNumbers: true
      Names: false
      CorrectedData: true
      PrettyAmounts: false

  Sources:
    - id: "mergable"
      filesystem:
        paths:
          - "./testdata/"

    - id: "audittrail"
      bucket:
        url: "gs://ach-audittrail/"
        paths:
          - "files"
      encryption:
        gpg:
          files:
            - keyFile: "/conf/keys/audittrail.priv"
              keyPassword: "secret"

Next - Running