feat(*): Update example appsettings.json

This commit is contained in:
Josh Creek
2021-09-02 21:22:36 +01:00
parent fcede90ae3
commit dc7ec40cde
+10 -10
View File
@@ -15,11 +15,11 @@ To utilise a repository you'll need to set up the relevant section in your `apps
```json ```json
"SftpRepository": { "SftpRepository": {
"host": "my-server.local", "Host": "my-server.local",
"port": 22, "Port": 22,
"username": "usernamegoeshere", "Username": "usernamegoeshere",
"password": "passwordgoeshere", "Password": "passwordgoeshere",
"remoteDirectoryPath": "/home/username/foldername" "RemoteDirectoryPath": "/home/username/foldername"
} }
``` ```
@@ -94,10 +94,10 @@ The appsettings sections for each one that isn't `in progress` are included belo
```json ```json
"SftpRepository": { "SftpRepository": {
"host": "", "Host": "",
"port": 22, "Port": 22,
"username": "", "Username": "",
"password": "", "Password": "",
"remoteDirectoryPath": "/" "RemoteDirectoryPath": "/"
} }
``` ```