Skip to content

Commit 24b7335

Browse files
committed
Change comments and some options to conform to WIKI pages
1 parent 21d32c0 commit 24b7335

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

ProjectTemplates/ReferenceProject/Settings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public static class Settings
1515

1616
public static class Services
1717
{
18-
public static string CoolService { get; } = TrimUrl(Get("CoolServiceEndpoint")); // %ORIGIN% will be substituted with the value from an environment variable
18+
public static string CoolService { get; } = TrimUrl(Get("CoolServiceEndpoint")); // %ENDPOINT_HOST% will be substituted with the value from an environment variable
1919
public static string AnotherService { get; } = TrimUrl(Get("AnotherServiceEndpoint"));
2020
}
2121
}

ProjectTemplates/ReferenceProject/appsettings.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@
2222
]
2323
},
2424
"AllowedHosts": "*",
25-
"CoolServiceEndpoint": "http://%ORIGIN%/cool",
26-
"AnotherServiceEndpoint": "http://%ORIGIN%/another"
25+
"CoolServiceEndpoint": "http://%ENDPOINT_HOST%/cool",
26+
"AnotherServiceEndpoint": "http://%ENDPOINT_HOST%/another"
2727
}

0 commit comments

Comments
 (0)