This repository has been archived by the owner on Aug 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #514 from adamdecaf/viper-config
config: use viper for parsing config which allows for case-insensitive
- Loading branch information
Showing
15 changed files
with
316 additions
and
174 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,27 +11,27 @@ database: | |
sqlite: | ||
path: "paygate.db" | ||
odfi: | ||
routing_number: "987654320" | ||
routingNumber: "987654320" | ||
gateway: | ||
# origin is often an ABA routing number | ||
origin: "987654320" | ||
# origin_name is the name of your ODFI | ||
origin_name: "My Bank" | ||
originName: "My Bank" | ||
# destination can be the ABA routing number of the Federal Reserve bank used | ||
destination: "071000301" | ||
# destination_name would be name of Federal Reserve bank used | ||
destination_name: "FRBATLANTA" | ||
inbound_path: "./inbound/" | ||
outbound_path: "./outbound/" | ||
return_path: "./returned/" | ||
destinationName: "FRBATLANTA" | ||
inboundPath: "./inbound/" | ||
outboundPath: "./outbound/" | ||
returnPath: "./returned/" | ||
cutoffs: | ||
timezone: "America/New_York" | ||
windows: | ||
- "16:20" # 4:20pm EST | ||
inbound: | ||
interval: "10m" | ||
transfers: | ||
balance_entries: true | ||
balanceEntries: true | ||
ftp: | ||
hostname: "localhost:2121" | ||
username: "admin" | ||
|
@@ -41,12 +41,12 @@ odfi: | |
# username: "demo" | ||
# password: "password" | ||
storage: | ||
cleanup_local_directory: true | ||
keep_remote_files: false | ||
cleanupLocalDirectory: true | ||
keepRemoteFiles: false | ||
local: | ||
directory: "./storage/" | ||
validation: | ||
micro_deposits: | ||
microDeposits: | ||
source: | ||
# Example ID's from Moov Customers service | ||
customerID: "customer" | ||
|
@@ -63,5 +63,5 @@ pipeline: | |
to: | ||
- "[email protected]" | ||
- "[email protected]" | ||
connection_uri: "smtps://test:test@localhost:1025/?insecure_skip_verify=true" | ||
company_name: "Moov" | ||
connectionURI: "smtps://test:test@localhost:1025/?insecure_skip_verify=true" | ||
companyName: "Moov" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.