From ac56cf746fe9927ef13dcef745ffe29a94168608 Mon Sep 17 00:00:00 2001 From: George-Alexander-S <88212297+George-Alexander-S@users.noreply.github.com> Date: Mon, 21 Oct 2024 14:37:50 +0200 Subject: [PATCH 1/3] ci: add Azure Static Web Apps workflow file on-behalf-of: @Azure opensource@microsoft.com --- ...tatic-web-apps-thankful-tree-022ab5f10.yml | 46 +++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 .github/workflows/azure-static-web-apps-thankful-tree-022ab5f10.yml diff --git a/.github/workflows/azure-static-web-apps-thankful-tree-022ab5f10.yml b/.github/workflows/azure-static-web-apps-thankful-tree-022ab5f10.yml new file mode 100644 index 0000000..e2839b6 --- /dev/null +++ b/.github/workflows/azure-static-web-apps-thankful-tree-022ab5f10.yml @@ -0,0 +1,46 @@ +name: Azure Static Web Apps CI/CD + +on: + push: + branches: + - main + pull_request: + types: [opened, synchronize, reopened, closed] + branches: + - main + +jobs: + build_and_deploy_job: + if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed') + runs-on: ubuntu-latest + name: Build and Deploy Job + steps: + - uses: actions/checkout@v3 + with: + submodules: true + lfs: false + - name: Build And Deploy + id: builddeploy + uses: Azure/static-web-apps-deploy@v1 + with: + azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_THANKFUL_TREE_022AB5F10 }} + repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments) + action: "upload" + ###### Repository/Build Configurations - These values can be configured to match your app requirements. ###### + # For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig + app_location: "./todo-frontend" # App source code path + api_location: "" # Api source code path - optional + output_location: "build" # Built app content directory - optional + ###### End of Repository/Build Configurations ###### + + close_pull_request_job: + if: github.event_name == 'pull_request' && github.event.action == 'closed' + runs-on: ubuntu-latest + name: Close Pull Request Job + steps: + - name: Close Pull Request + id: closepullrequest + uses: Azure/static-web-apps-deploy@v1 + with: + azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_THANKFUL_TREE_022AB5F10 }} + action: "close" From 05d1feb904f9c5c9534efd1c4f80ff1e8acb2ab2 Mon Sep 17 00:00:00 2001 From: George-Alexander-S <88212297+George-Alexander-S@users.noreply.github.com> Date: Mon, 21 Oct 2024 14:57:50 +0200 Subject: [PATCH 2/3] Update azure-static-web-apps-thankful-tree-022ab5f10.yml dist instead of build --- .../workflows/azure-static-web-apps-thankful-tree-022ab5f10.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/azure-static-web-apps-thankful-tree-022ab5f10.yml b/.github/workflows/azure-static-web-apps-thankful-tree-022ab5f10.yml index e2839b6..f5c33ba 100644 --- a/.github/workflows/azure-static-web-apps-thankful-tree-022ab5f10.yml +++ b/.github/workflows/azure-static-web-apps-thankful-tree-022ab5f10.yml @@ -30,7 +30,7 @@ jobs: # For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig app_location: "./todo-frontend" # App source code path api_location: "" # Api source code path - optional - output_location: "build" # Built app content directory - optional + output_location: "dist" # Built app content directory - optional ###### End of Repository/Build Configurations ###### close_pull_request_job: From 75156c515364b34fcef41cb8e9a99acc898f9e8e Mon Sep 17 00:00:00 2001 From: George Date: Mon, 21 Oct 2024 15:26:23 +0200 Subject: [PATCH 3/3] backend URL provided --- todo-frontend/src/consts.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/todo-frontend/src/consts.js b/todo-frontend/src/consts.js index 06a891b..cece74d 100644 --- a/todo-frontend/src/consts.js +++ b/todo-frontend/src/consts.js @@ -1,6 +1,6 @@ import "react"; -const url = import.meta.env.VITE_ENDPOINT_URL; //|| "http://localhost:5168"; - +const url = "https://georgewebapp.azurewebsites.net/"; //|| "http://localhost:5168"; +//const url = "http://localhost:5173/" // ensure trailing / is removed export const API_URL = url.replace(/\/$/, "");