mirror of
https://github.com/ditkrg/AuthorizationServerDemos.git
synced 2026-01-22 21:46:58 +00:00
write run script
This commit is contained in:
parent
109d98ee2c
commit
68a82f0e7b
@ -8,6 +8,8 @@ This is an early look of what the future of authentication might look like for c
|
||||
|
||||
<img src="assets/architecture.png" alt="Components Architecture" style="zoom:50%;" />
|
||||
|
||||
**Note:** You can run all components by using the `run.ps1` script.
|
||||
|
||||
### IAM
|
||||
|
||||
We are using IdentityServer 4 to implement our Authorization Server (Identity and Access Management). You can find [the source code here](./CSharp/AuthorizationServer).
|
||||
|
||||
7
run.ps1
Normal file
7
run.ps1
Normal file
@ -0,0 +1,7 @@
|
||||
Start-Process -FilePath "dotnet" -ArgumentList "run" -WorkingDirectory ./CSharp/AuthorizationServer
|
||||
Start-Process -FilePath "dotnet" -ArgumentList "run" -WorkingDirectory ./CSharp/TrafficPoliceApi
|
||||
Start-Process -FilePath "dotnet" -ArgumentList "run" -WorkingDirectory ./CSharp/TaxApp
|
||||
|
||||
Start-Process -FilePath "npm" -ArgumentList "start" -WorkingDirectory ./React/traffic-police/
|
||||
Start-Process -FilePath "npm" -ArgumentList "start" -WorkingDirectory ./React/real-estate/
|
||||
Start-Process -FilePath "npm" -ArgumentList "start" -WorkingDirectory ./Node/real-estate
|
||||
Loading…
Reference in New Issue
Block a user