From 68a82f0e7b4c3dcb1ca97cc06d93151c92a51059 Mon Sep 17 00:00:00 2001 From: Muhammad Azeez Date: Tue, 19 Jan 2021 15:44:31 +0300 Subject: [PATCH] write run script --- README.md | 2 ++ run.ps1 | 7 +++++++ 2 files changed, 9 insertions(+) create mode 100644 run.ps1 diff --git a/README.md b/README.md index 09e46c6..60f9fca 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,8 @@ This is an early look of what the future of authentication might look like for c Components Architecture +**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). diff --git a/run.ps1 b/run.ps1 new file mode 100644 index 0000000..cb1eba9 --- /dev/null +++ b/run.ps1 @@ -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 \ No newline at end of file