From dc7ec40cde809920418a9adc515e934e9aef210b Mon Sep 17 00:00:00 2001 From: Josh Creek Date: Thu, 2 Sep 2021 21:22:36 +0100 Subject: [PATCH] feat(*): Update example appsettings.json --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8396e1f..452f346 100644 --- a/README.md +++ b/README.md @@ -15,11 +15,11 @@ To utilise a repository you'll need to set up the relevant section in your `apps ```json "SftpRepository": { - "host": "my-server.local", - "port": 22, - "username": "usernamegoeshere", - "password": "passwordgoeshere", - "remoteDirectoryPath": "/home/username/foldername" + "Host": "my-server.local", + "Port": 22, + "Username": "usernamegoeshere", + "Password": "passwordgoeshere", + "RemoteDirectoryPath": "/home/username/foldername" } ``` @@ -94,10 +94,10 @@ The appsettings sections for each one that isn't `in progress` are included belo ```json "SftpRepository": { - "host": "", - "port": 22, - "username": "", - "password": "", - "remoteDirectoryPath": "/" + "Host": "", + "Port": 22, + "Username": "", + "Password": "", + "RemoteDirectoryPath": "/" } ```