Skip to content

Commit 5ff67d8

Browse files
Ticket ## : Fix URL + Update README
1 parent fab815f commit 5ff67d8

4 files changed

Lines changed: 13 additions & 5 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Business analyst credentials :
4848

4949
### Tasklist website
5050

51-
Tasklist live demo : [http://simpleidserver.northeurope.cloudapp.azure.com/casemanagement](http://simpleidserver.northeurope.cloudapp.azure.com/tasklist).
51+
Tasklist live demo : [http://simpleidserver.northeurope.cloudapp.azure.com/tasklist](http://simpleidserver.northeurope.cloudapp.azure.com/tasklist).
5252

5353
Business analyst credentials :
5454

src/CaseManagement.CMMN.SqlServer.Host/CaseManagement.CMMN.SqlServer.Host.csproj

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@
55
<SignAssembly>true</SignAssembly>
66
<AssemblyOriginatorKeyFile>C:\Projects\CaseManagement\key.snk</AssemblyOriginatorKeyFile>
77
</PropertyGroup>
8+
<ItemGroup>
9+
<Compile Remove="Migrations\**" />
10+
<Content Remove="Migrations\**" />
11+
<EmbeddedResource Remove="Migrations\**" />
12+
<None Remove="Migrations\**" />
13+
</ItemGroup>
814
<ItemGroup>
915
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="3.1.2" />
1016
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.2" />
@@ -17,9 +23,6 @@
1723
<ProjectReference Include="..\CaseManagement.CMMN.Persistence.EF\CaseManagement.CMMN.Persistence.EF.csproj" />
1824
<ProjectReference Include="..\CaseManagement.Common.SqlServer\CaseManagement.Common.SqlServer.csproj" />
1925
</ItemGroup>
20-
<ItemGroup>
21-
<Folder Include="Migrations\" />
22-
</ItemGroup>
2326
<ItemGroup>
2427
<None Include="..\..\key.snk" Link="key.snk" />
2528
</ItemGroup>

src/CaseManagement.HumanTask.Host/CaseManagement.HumanTask.Host.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
<ProjectReference Include="..\CaseManagement.HumanTask.AspNetCore\CaseManagement.HumanTask.AspNetCore.csproj" />
1616
</ItemGroup>
1717
<ItemGroup>
18+
<None Update="oauth_puk.txt">
19+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
20+
</None>
1821
<None Update="openid_puk.txt">
1922
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
2023
</None>

src/CaseManagement.Website/config/webpack.azure.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,13 +149,15 @@ module.exports = {
149149
'HUMANTASK_API_URL': JSON.stringify(HUMANTASK_API_URL),
150150
'OPENID_URL': JSON.stringify(OPENID_URL),
151151
'REDIRECT_URL': JSON.stringify(REDIRECT_URL),
152+
'BPMN_API_URL': JSON.stringify(BPMN_API_URL),
152153
'process.env': {
153154
'ENV': JSON.stringify(ENV),
154155
'API_URL': JSON.stringify(API_URL),
155156
'HUMANTASK_API_URL': JSON.stringify(HUMANTASK_API_URL),
156-
'OPENID_URL': JSON.stringify(OPENID_URL),
157157
'BASE_URL': JSON.stringify(BASE_URL),
158+
'OPENID_URL': JSON.stringify(OPENID_URL),
158159
'REDIRECT_URL': JSON.stringify(REDIRECT_URL),
160+
'BPMN_API_URL': JSON.stringify(BPMN_API_URL),
159161
}
160162
})
161163
]

0 commit comments

Comments
 (0)