diff --git a/src/Templates/Boilerplate/Bit.Boilerplate/.template.config/ide.host.json b/src/Templates/Boilerplate/Bit.Boilerplate/.template.config/ide.host.json index 6037213b71..2933c9f65d 100644 --- a/src/Templates/Boilerplate/Bit.Boilerplate/.template.config/ide.host.json +++ b/src/Templates/Boilerplate/Bit.Boilerplate/.template.config/ide.host.json @@ -9,8 +9,7 @@ ], "symbolInfo": [ { - "id": "serverUrl", - "isVisible": false + "id": "helpUrl" }, { "id": "database" @@ -41,6 +40,10 @@ }, { "id": "appCenter" + }, + { + "id": "serverUrl", + "isVisible": false } ] } \ No newline at end of file diff --git a/src/Templates/Boilerplate/Bit.Boilerplate/.template.config/template.json b/src/Templates/Boilerplate/Bit.Boilerplate/.template.config/template.json index 5cee2dbf6e..5681fd8cc7 100644 --- a/src/Templates/Boilerplate/Bit.Boilerplate/.template.config/template.json +++ b/src/Templates/Boilerplate/Bit.Boilerplate/.template.config/template.json @@ -16,6 +16,13 @@ "sourceName": "Boilerplate", "preferNameDirectory": true, "symbols": { + "helpUrl": { + "displayName": "More info at", + "type": "parameter", + "datatype": "string", + "defaultValue": "https://bitplatform.dev/templates/create-project", + "description": "Open the following url in order to get more information about the following parameters." + }, //Guid generator for App Id "ApplicationIdGuid": { "type": "generated", @@ -88,7 +95,7 @@ "description": "Boilerplate's API uses Fluent Storage. You can use any other fluent storage provider (https://github.com/robinrodricks/FluentStorage/wiki/Blob-Storage)" }, "api": { - "displayName": "Api deployment structure", + "displayName": "API deployment configuration", "type": "parameter", "datatype": "choice", "defaultValue": "Integrated", diff --git a/src/Templates/Boilerplate/UpdateLocalInstallation.bat b/src/Templates/Boilerplate/UpdateLocalInstallation.bat new file mode 100644 index 0000000000..9a0754990b --- /dev/null +++ b/src/Templates/Boilerplate/UpdateLocalInstallation.bat @@ -0,0 +1 @@ +dotnet pack -c Release -p:ReleaseVersion=0.0.0 -p:PackageVersion=0.0.0 && cd bin\Release && dotnet new uninstall Bit.Boilerplate && dotnet new install .\Bit.Boilerplate.0.0.0.nupkg && cd ..\.. \ No newline at end of file