Skip to content

Commit

Permalink
Ticket ## : Fix URL + Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
thabart committed Dec 18, 2020
1 parent fab815f commit 5ff67d8
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Business analyst credentials :

### Tasklist website

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

Business analyst credentials :

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>C:\Projects\CaseManagement\key.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Migrations\**" />
<Content Remove="Migrations\**" />
<EmbeddedResource Remove="Migrations\**" />
<None Remove="Migrations\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="3.1.2" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.2" />
Expand All @@ -17,9 +23,6 @@
<ProjectReference Include="..\CaseManagement.CMMN.Persistence.EF\CaseManagement.CMMN.Persistence.EF.csproj" />
<ProjectReference Include="..\CaseManagement.Common.SqlServer\CaseManagement.Common.SqlServer.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="Migrations\" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\key.snk" Link="key.snk" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
<ProjectReference Include="..\CaseManagement.HumanTask.AspNetCore\CaseManagement.HumanTask.AspNetCore.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="oauth_puk.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="openid_puk.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
Expand Down
4 changes: 3 additions & 1 deletion src/CaseManagement.Website/config/webpack.azure.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,13 +149,15 @@ module.exports = {
'HUMANTASK_API_URL': JSON.stringify(HUMANTASK_API_URL),
'OPENID_URL': JSON.stringify(OPENID_URL),
'REDIRECT_URL': JSON.stringify(REDIRECT_URL),
'BPMN_API_URL': JSON.stringify(BPMN_API_URL),
'process.env': {
'ENV': JSON.stringify(ENV),
'API_URL': JSON.stringify(API_URL),
'HUMANTASK_API_URL': JSON.stringify(HUMANTASK_API_URL),
'OPENID_URL': JSON.stringify(OPENID_URL),
'BASE_URL': JSON.stringify(BASE_URL),
'OPENID_URL': JSON.stringify(OPENID_URL),
'REDIRECT_URL': JSON.stringify(REDIRECT_URL),
'BPMN_API_URL': JSON.stringify(BPMN_API_URL),
}
})
]
Expand Down

0 comments on commit 5ff67d8

Please sign in to comment.