From 3b755dde3c179cffef09b69117a964eb26e1b57c Mon Sep 17 00:00:00 2001 From: Andressa Jendreieck <103114493+ajendreieckm@users.noreply.github.com> Date: Mon, 12 Jun 2023 14:34:46 +0000 Subject: [PATCH 1/3] Update title and colour --- frontend/src/views/Home.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/views/Home.vue b/frontend/src/views/Home.vue index 16cd3818..aa00c8b1 100644 --- a/frontend/src/views/Home.vue +++ b/frontend/src/views/Home.vue @@ -6,8 +6,8 @@
- - Milligram + + MyGram From 30146fb2efc93751eb2d1a59a12c3ff6c9b79a47 Mon Sep 17 00:00:00 2001 From: Andressa Jendreieck <103114493+ajendreieckm@users.noreply.github.com> Date: Mon, 12 Jun 2023 17:38:15 +0200 Subject: [PATCH 2/3] Add or update the Azure App Service build and deployment workflow config --- .../main_milligram-backend-anyonecancode.yml | 63 +++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 .github/workflows/main_milligram-backend-anyonecancode.yml diff --git a/.github/workflows/main_milligram-backend-anyonecancode.yml b/.github/workflows/main_milligram-backend-anyonecancode.yml new file mode 100644 index 00000000..1e6d66c9 --- /dev/null +++ b/.github/workflows/main_milligram-backend-anyonecancode.yml @@ -0,0 +1,63 @@ +# Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy +# More GitHub Actions for Azure: https://github.com/Azure/actions +# More info on Python, GitHub Actions, and Azure App Service: https://aka.ms/python-webapps-actions + +name: Build and deploy Python app to Azure Web App - milligram-backend-anyonecancode + +on: + push: + branches: + - main + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: Set up Python version + uses: actions/setup-python@v1 + with: + python-version: '3.8' + + - name: Create and start virtual environment + run: | + python -m venv venv + source venv/bin/activate + + - name: Install dependencies + run: pip install -r requirements.txt + + # Optional: Add step to run tests here (PyTest, Django test suites, etc.) + + - name: Upload artifact for deployment jobs + uses: actions/upload-artifact@v2 + with: + name: python-app + path: | + . + !venv/ + + deploy: + runs-on: ubuntu-latest + needs: build + environment: + name: 'Production' + url: ${{ steps.deploy-to-webapp.outputs.webapp-url }} + + steps: + - name: Download artifact from build job + uses: actions/download-artifact@v2 + with: + name: python-app + path: . + + - name: 'Deploy to Azure Web App' + uses: azure/webapps-deploy@v2 + id: deploy-to-webapp + with: + app-name: 'milligram-backend-anyonecancode' + slot-name: 'Production' + publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_F7933D9D5B2343D093DA6594413D54E4 }} From 98a882b6db5e5d8022e006514489f595b6038be1 Mon Sep 17 00:00:00 2001 From: Andressa Jendreieck <103114493+ajendreieckm@users.noreply.github.com> Date: Tue, 14 May 2024 13:08:45 +0000 Subject: [PATCH 3/3] Name und Farbe geaendert --- frontend/src/views/Home.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/views/Home.vue b/frontend/src/views/Home.vue index aa00c8b1..02455a3b 100644 --- a/frontend/src/views/Home.vue +++ b/frontend/src/views/Home.vue @@ -6,8 +6,8 @@
- - MyGram + + AndressaGram