From e6c0dae2bc32224805e40cb8518f110be24f100a Mon Sep 17 00:00:00 2001 From: malik masis Date: Thu, 10 Mar 2022 10:35:14 +0300 Subject: [PATCH 1/4] Update readme I've added some notes regarding the shell access issue. --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 27d403ae..1a9cd24a 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,11 @@ You can either run in Visual Studio, or using [Microsoft Tye](https://github.com - Rename `.env.example` file to `.env` file and provide PayPal ClientID and Secret. - Execute `run-tye.ps1` - +- **Note**: If you meet with some shell issues regarding authorization. You may check with the following codes your access and then set your machine configuration. [for more detail](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.security/get-executionpolicy?view=powershell-7.2) +```bash +Get-ExecutionPolicy list +Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope LocalMachine + ``` - Wait until all applications are up! - You can check running application from tye dashboard ([localhost:8000](http://127.0.0.1:8000/)) From f61cf5ffb6c9bd57674e4096bcd9b3c6b4ab8983 Mon Sep 17 00:00:00 2001 From: malik masis Date: Thu, 10 Mar 2022 10:54:32 +0300 Subject: [PATCH 2/4] Update README.md Co-authored-by: Enis Necipoglu --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 1a9cd24a..454ed0eb 100644 --- a/README.md +++ b/README.md @@ -27,11 +27,11 @@ You can either run in Visual Studio, or using [Microsoft Tye](https://github.com - Rename `.env.example` file to `.env` file and provide PayPal ClientID and Secret. - Execute `run-tye.ps1` -- **Note**: If you meet with some shell issues regarding authorization. You may check with the following codes your access and then set your machine configuration. [for more detail](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.security/get-executionpolicy?view=powershell-7.2) -```bash -Get-ExecutionPolicy list -Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope LocalMachine - ``` + - **Note**: If you meet with some shell issues regarding authorization. You may check with the following codes your access and then set your machine configuration. [for more detail](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.security/get-executionpolicy?view=powershell-7.2) + ```bash + Get-ExecutionPolicy list + Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope LocalMachine + ``` - Wait until all applications are up! - You can check running application from tye dashboard ([localhost:8000](http://127.0.0.1:8000/)) From 542447f665bee9dd94fbb697062f8e0af21f4a79 Mon Sep 17 00:00:00 2001 From: malik masis Date: Thu, 10 Mar 2022 14:53:12 +0300 Subject: [PATCH 3/4] Made correction --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 454ed0eb..2d80f01b 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ You can either run in Visual Studio, or using [Microsoft Tye](https://github.com - Rename `.env.example` file to `.env` file and provide PayPal ClientID and Secret. - Execute `run-tye.ps1` - - **Note**: If you meet with some shell issues regarding authorization. You may check with the following codes your access and then set your machine configuration. [for more detail](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.security/get-executionpolicy?view=powershell-7.2) + - **Note**: If you come across shell issues regarding authorization. You may check with the following codes your access and then set your machine configuration. [See Microsoft Powershell documentation](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.security/get-executionpolicy?view=powershell-7.2) ```bash Get-ExecutionPolicy list Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope LocalMachine From d2feca1ad721ad50b9a24cf36d5e6d8f9781b3e2 Mon Sep 17 00:00:00 2001 From: Galip Tolga Erdem Date: Thu, 10 Mar 2022 15:01:07 +0300 Subject: [PATCH 4/4] Update README.md Moved powershell script notification under tye dashboard --- README.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 2d80f01b..672fdcd1 100644 --- a/README.md +++ b/README.md @@ -27,14 +27,16 @@ You can either run in Visual Studio, or using [Microsoft Tye](https://github.com - Rename `.env.example` file to `.env` file and provide PayPal ClientID and Secret. - Execute `run-tye.ps1` - - **Note**: If you come across shell issues regarding authorization. You may check with the following codes your access and then set your machine configuration. [See Microsoft Powershell documentation](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.security/get-executionpolicy?view=powershell-7.2) + +- Wait until all applications are up! + + - You can check running application from tye dashboard ([localhost:8000](http://127.0.0.1:8000/)) + - **Note**: If you see all of your applications keep restarting on tye dashboard or tye console, you may be facing ssl certificate issues. To diagnose the problems better, check any application logs. If it is related with SSL, developer certificate creation may have failed because of powershell issues regarding authorization. Check the powershell script running configuration and set policy for your local machine as: ```bash Get-ExecutionPolicy list Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope LocalMachine - ``` -- Wait until all applications are up! - - - You can check running application from tye dashboard ([localhost:8000](http://127.0.0.1:8000/)) + ``` + See [Microsoft Powershell documentation](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.security/get-executionpolicy?view=powershell-7.2) for more information. - After all your backend services are up, start the angular application: