write run script

This commit is contained in:
Muhammad Azeez 2021-01-19 15:44:31 +03:00
parent 109d98ee2c
commit 68a82f0e7b
2 changed files with 9 additions and 0 deletions

View File

@ -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
View 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