From 318c5f5bb0a218c1cca20c7319e814194739d637 Mon Sep 17 00:00:00 2001 From: Abhishek Date: Mon, 25 May 2026 13:14:28 +0530 Subject: [PATCH 01/14] Initial commit --- README.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 000000000..09c2f40e7 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# tery \ No newline at end of file From ef00fab85f0dc3130655d3489c721f26d56d639e Mon Sep 17 00:00:00 2001 From: Abhishek Date: Mon, 25 May 2026 08:55:39 +0000 Subject: [PATCH 02/14] Add pipeline code --- LearningDevOps/README.md | 4 +++ LearningDevOps/azure-pipelines.yml | 50 ++++++++++++++++++++++++++++++ LearningDevOps/note.txt | 17 ++++++++++ LearningDevOps/requirements.txt | 3 ++ 4 files changed, 74 insertions(+) create mode 100644 LearningDevOps/README.md create mode 100644 LearningDevOps/azure-pipelines.yml create mode 100644 LearningDevOps/note.txt create mode 100644 LearningDevOps/requirements.txt diff --git a/LearningDevOps/README.md b/LearningDevOps/README.md new file mode 100644 index 000000000..0a72f69f7 --- /dev/null +++ b/LearningDevOps/README.md @@ -0,0 +1,4 @@ +# LearningDevOps +ALL learning of devops will be right here. + +hey rahul \ No newline at end of file diff --git a/LearningDevOps/azure-pipelines.yml b/LearningDevOps/azure-pipelines.yml new file mode 100644 index 000000000..772211d63 --- /dev/null +++ b/LearningDevOps/azure-pipelines.yml @@ -0,0 +1,50 @@ +# Starter pipeline +# Start with a minimal pipeline that you can customize to build and deploy your code. +# Add steps that build, run tests, deploy, and more: +# https://aka.ms/yaml + +trigger: +- main + +pool: + vmImage: ubuntu-latest + +strategy: + matrix: + python310: + python.version: '3.10' + python311: + python.version: '3.11' + python312: + python.version: '3.12' + +steps: +- task: UsePythonVersion@0 + inputs: + versionSpec: '$(python.version)' + displayName: 'use python $(python.version)' + +- script: | + python -m pip install --upgrade pip + pip install -r requirements.txt + displayName: 'Install Dependencies' + +- task: ArchiveFiles@2 + displayName: 'Archive Files' + inputs: + rootFolderOrFile: $(System.DefaultWorkingDirectory) + includeRootFolder: false + archiveType: zip + archiveFile: $(Build.ArtifactStagingDirectory)/$(Build.BuildId)-$(python.version).zip + replaceExistingArchive: true + +- task: PublishBuildArtifacts@1 + inputs: + PathtoPublish: '$(Build.ArtifactStagingDirectory)' + ArtifactName: 'drop' + publishLocation: 'Container' + +- script: | + pip install pytest pytest-azurepipelines + pytest + displayName: 'pytest' diff --git a/LearningDevOps/note.txt b/LearningDevOps/note.txt new file mode 100644 index 000000000..c069890d1 --- /dev/null +++ b/LearningDevOps/note.txt @@ -0,0 +1,17 @@ +commit ca93958802b25974073c523bb3867731981d0b3f (HEAD -> main, origin/main, origin/dev, origin/HEAD, test, dev) +Author: Abhishek +Date: Tue May 19 05:59:41 2026 +0000 + + Made changes in note.txt file + +commit 72c4f94a449759d6d7e25e7b8f33e8738faaeace +Author: Abhishek +Date: Tue May 19 05:52:37 2026 +0000 + + Setting up Platform + +commit 3ec51231c91012ae805632d87be697d25fd64b41 +Author: Abhishek +Date: Fri May 15 01:17:14 2026 +0530 + + Initial commit diff --git a/LearningDevOps/requirements.txt b/LearningDevOps/requirements.txt new file mode 100644 index 000000000..92e7eb0b7 --- /dev/null +++ b/LearningDevOps/requirements.txt @@ -0,0 +1,3 @@ +azure-cli==2.60.0 +pytest==8.2.0 +requests==2.31.0 From 620b39d573d97b48dc6e9babd75b1e8559167285 Mon Sep 17 00:00:00 2001 From: Abhishek Date: Mon, 25 May 2026 09:08:20 +0000 Subject: [PATCH 03/14] pipeline added --- LearningDevOps/requirements.txt => requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename LearningDevOps/requirements.txt => requirements.txt (65%) diff --git a/LearningDevOps/requirements.txt b/requirements.txt similarity index 65% rename from LearningDevOps/requirements.txt rename to requirements.txt index 92e7eb0b7..f52cce264 100644 --- a/LearningDevOps/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ azure-cli==2.60.0 pytest==8.2.0 -requests==2.31.0 +requests==2.31.0 \ No newline at end of file From 9387218d03f48b5f57192414220c73d25f9b7a39 Mon Sep 17 00:00:00 2001 From: Rahul Date: Mon, 25 May 2026 15:08:19 +0530 Subject: [PATCH 04/14] WIP(Added sample test file) --- test_sample.py | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 test_sample.py diff --git a/test_sample.py b/test_sample.py new file mode 100644 index 000000000..d2cd73cb2 --- /dev/null +++ b/test_sample.py @@ -0,0 +1,2 @@ +def test_basic(): + assert True \ No newline at end of file From 41a7ae4e8b6fab23d62022be62bd3eed09a855b7 Mon Sep 17 00:00:00 2001 From: Abhishek Date: Tue, 26 May 2026 14:06:11 +0530 Subject: [PATCH 05/14] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines.yml | 81 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 000000000..5e2d9f265 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,81 @@ +trigger: +- main + +variables: + # Azure Resource Manager connection created during pipeline creation + azureServiceConnectionId: '' + + # Web app name + webAppName: '' + + # Agent VM image name + vmImageName: 'ubuntu-latest' + + # Environment name + environmentName: '' + + # Project root folder. Point to the folder containing manage.py file. + projectRoot: $(System.DefaultWorkingDirectory) + + pythonVersion: '3.11' + +stages: +- stage: Build + displayName: Build stage + jobs: + - job: BuildJob + pool: + vmImage: $(vmImageName) + steps: + - task: UsePythonVersion@0 + inputs: + versionSpec: '$(pythonVersion)' + displayName: 'Use Python $(pythonVersion)' + + - script: | + python -m venv antenv + source antenv/bin/activate + python -m pip install --upgrade pip + pip install setuptools + pip install -r requirements.txt + workingDirectory: $(projectRoot) + displayName: "Install requirements" + + - task: ArchiveFiles@2 + displayName: 'Archive files' + inputs: + rootFolderOrFile: '$(projectRoot)' + includeRootFolder: false + archiveType: zip + archiveFile: $(Build.ArtifactStagingDirectory)/$(Build.BuildId).zip + replaceExistingArchive: true + + - upload: $(Build.ArtifactStagingDirectory)/$(Build.BuildId).zip + displayName: 'Upload package' + artifact: drop + +- stage: Deploy + displayName: 'Deploy Web App' + dependsOn: Build + condition: succeeded() + jobs: + - deployment: DeploymentJob + pool: + vmImage: $(vmImageName) + environment: $(environmentName) + strategy: + runOnce: + deploy: + steps: + + - task: UsePythonVersion@0 + inputs: + versionSpec: '$(pythonVersion)' + displayName: 'Use Python version' + + - task: AzureWebApp@1 + displayName: 'Deploy Azure Web App : $(webAppName)' + inputs: + azureSubscription: $(azureServiceConnectionId) + appName: $(webAppName) + package: $(Pipeline.Workspace)/drop/$(Build.BuildId).zip \ No newline at end of file From 90f581677ea56f32164f77c0687cae72b53f505e Mon Sep 17 00:00:00 2001 From: Abhishek Date: Tue, 26 May 2026 14:13:59 +0530 Subject: [PATCH 06/14] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 5e2d9f265..b6064b059 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -3,16 +3,16 @@ trigger: variables: # Azure Resource Manager connection created during pipeline creation - azureServiceConnectionId: '' + azureServiceConnectionId: '01fcb7bf-3c1d-44ee-9116-c74c89bb26db' # Web app name - webAppName: '' + webAppName: 'abhiappPY' # Agent VM image name vmImageName: 'ubuntu-latest' # Environment name - environmentName: '' + environmentName: 'abhiappPY' # Project root folder. Point to the folder containing manage.py file. projectRoot: $(System.DefaultWorkingDirectory) From 9dda64743df1604a9a722c69a7836f7c588e00d8 Mon Sep 17 00:00:00 2001 From: Rahul Date: Tue, 26 May 2026 14:52:29 +0530 Subject: [PATCH 07/14] WIP(Changes Home page) --- test1/python-sample-vscode-flask-tutorial | 1 + 1 file changed, 1 insertion(+) create mode 160000 test1/python-sample-vscode-flask-tutorial diff --git a/test1/python-sample-vscode-flask-tutorial b/test1/python-sample-vscode-flask-tutorial new file mode 160000 index 000000000..90f581677 --- /dev/null +++ b/test1/python-sample-vscode-flask-tutorial @@ -0,0 +1 @@ +Subproject commit 90f581677ea56f32164f77c0687cae72b53f505e From 2247a8fb9e0d27d6114648b51834edd6083dc23d Mon Sep 17 00:00:00 2001 From: Rahul Date: Tue, 26 May 2026 15:48:00 +0530 Subject: [PATCH 08/14] Update subproject commit to indicate dirty state --- test1/python-sample-vscode-flask-tutorial | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test1/python-sample-vscode-flask-tutorial b/test1/python-sample-vscode-flask-tutorial index 90f581677..1debe35e1 160000 --- a/test1/python-sample-vscode-flask-tutorial +++ b/test1/python-sample-vscode-flask-tutorial @@ -1 +1 @@ -Subproject commit 90f581677ea56f32164f77c0687cae72b53f505e +Subproject commit 1debe35e1e4dedfc0e494c403a638623492684ab From d7784cc399cc63d74e2e5759f111c01f646c7841 Mon Sep 17 00:00:00 2001 From: Rahul Date: Tue, 26 May 2026 15:34:12 +0530 Subject: [PATCH 09/14] hey --- hello_app/templates/home.html | 88 +++++++++++++++++++++++++++++++++-- requirements.txt | 6 +-- 2 files changed, 87 insertions(+), 7 deletions(-) diff --git a/hello_app/templates/home.html b/hello_app/templates/home.html index 95609fecd..81ae24976 100644 --- a/hello_app/templates/home.html +++ b/hello_app/templates/home.html @@ -1,7 +1,89 @@ {% extends "layout.html" %} + {% block title %} -Home +Home - Flask Tutorial {% endblock %} + {% block content %} -

Home page for the Visual Studio Code Flask tutorial.

-{% endblock %} + + +
+
+

Welcome to Flask

+

+ Your journey into web development starts here. This is the home page for your + Visual Studio Code Flask tutorial. +

+ Get Started +
+
+{% endblock %} \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index b945ee1ae..7e66a7a24 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,5 @@ -<<<<<<< HEAD +Flask==3.0.0 +Werkzeug==3.0.1 azure-cli==2.60.0 pytest==8.2.0 requests==2.31.0 -======= -Flask ->>>>>>> 90f581677ea56f32164f77c0687cae72b53f505e From 18bde6aa984981f48c6d43ccf4ba4757d428bd4b Mon Sep 17 00:00:00 2001 From: Rahul Date: Tue, 26 May 2026 16:00:45 +0530 Subject: [PATCH 10/14] Update submodule reference after resolving merge --- test1/python-sample-vscode-flask-tutorial | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test1/python-sample-vscode-flask-tutorial b/test1/python-sample-vscode-flask-tutorial index 1debe35e1..3f1fcce1b 160000 --- a/test1/python-sample-vscode-flask-tutorial +++ b/test1/python-sample-vscode-flask-tutorial @@ -1 +1 @@ -Subproject commit 1debe35e1e4dedfc0e494c403a638623492684ab +Subproject commit 3f1fcce1b69b77a9c35a9d984f6163604bb052ae From 8e884e0de3933b77a9856246cd8a4cbd7047c422 Mon Sep 17 00:00:00 2001 From: Rahul Date: Tue, 26 May 2026 16:01:47 +0530 Subject: [PATCH 11/14] Update submodule reference after resolving rebase --- test1/python-sample-vscode-flask-tutorial | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test1/python-sample-vscode-flask-tutorial b/test1/python-sample-vscode-flask-tutorial index 3f1fcce1b..d7784cc39 160000 --- a/test1/python-sample-vscode-flask-tutorial +++ b/test1/python-sample-vscode-flask-tutorial @@ -1 +1 @@ -Subproject commit 3f1fcce1b69b77a9c35a9d984f6163604bb052ae +Subproject commit d7784cc399cc63d74e2e5759f111c01f646c7841 From d548fb112583ab3e37af1ab161e577f2ca3b81b9 Mon Sep 17 00:00:00 2001 From: Rahul Date: Tue, 26 May 2026 16:32:13 +0530 Subject: [PATCH 12/14] Update submodule pointer for animated Flask pages --- test1/python-sample-vscode-flask-tutorial | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test1/python-sample-vscode-flask-tutorial b/test1/python-sample-vscode-flask-tutorial index d7784cc39..18ec0529b 160000 --- a/test1/python-sample-vscode-flask-tutorial +++ b/test1/python-sample-vscode-flask-tutorial @@ -1 +1 @@ -Subproject commit d7784cc399cc63d74e2e5759f111c01f646c7841 +Subproject commit 18ec0529b6ddeedc1eaf97f262aa973d6d2efc9e From b10b64b34058d88d1aa9d1ea48b874b9a9100c2d Mon Sep 17 00:00:00 2001 From: Rahul Date: Tue, 26 May 2026 16:31:43 +0530 Subject: [PATCH 13/14] Make home/about/contact pages fully animated and add Microsoft Docs links --- hello_app/static/site.css | 247 ++++++++++++++++++++++++++++++- hello_app/templates/about.html | 28 +++- hello_app/templates/contact.html | 28 +++- hello_app/templates/home.html | 128 +++++++--------- 4 files changed, 352 insertions(+), 79 deletions(-) diff --git a/hello_app/static/site.css b/hello_app/static/site.css index c14da260c..bde179534 100644 --- a/hello_app/static/site.css +++ b/hello_app/static/site.css @@ -29,4 +29,249 @@ .body-content { padding: 5px; font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; -} \ No newline at end of file +} + +.about-page { + position: relative; + min-height: 420px; + background: radial-gradient(circle at top left, #f5f8ff, #e6f0ff 40%, #d2e3ff 100%); + border-radius: 14px; + padding: 24px 28px; + box-shadow: 0 18px 50px rgba(35, 65, 130, 0.15); + overflow: hidden; +} + +.about-hero { + text-align: center; + margin-bottom: 24px; +} + +.hero-title { + font-size: 2.3rem; + font-weight: 800; + color: #1a237e; + animation: rainbowText 4s infinite linear; +} + +.hero-subtitle { + margin-top: 8px; + font-size: 1.05rem; + color: #333; + max-width: 720px; + margin-left: auto; + margin-right: auto; +} + +.hero-emoji { + margin-top: 18px; + font-size: 2.7rem; + animation: floatEmoji 3s ease-in-out infinite; +} + +.about-card { + background: rgba(255, 255, 255, 0.95); + border-radius: 18px; + padding: 22px; + border: 1px solid rgba(24, 39, 112, 0.08); + animation: floatCard 6s ease-in-out infinite; +} + +.hero-title { + animation: rainbowText 4s infinite linear, popTitle 4.5s ease-in-out infinite; +} + +.hero-subtitle { + margin-top: 8px; + font-size: 1.05rem; + color: #333; + max-width: 720px; + margin-left: auto; + margin-right: auto; + animation: textGlow 5.5s ease-in-out infinite; +} + +.doc-section { + margin-top: 18px; + padding: 14px; + background: #eef4ff; + border-radius: 12px; + border-left: 4px solid #4f6cff; +} + +.doc-badge { + display: inline-block; + font-weight: 700; + background: #4f6cff; + color: white; + padding: 4px 12px; + border-radius: 999px; + margin-bottom: 12px; +} + +.doc-link { + display: inline-block; + margin-top: 10px; + font-weight: 700; + color: #1a237e; + text-decoration: none; + border: 2px solid #1a237e; + padding: 8px 14px; + border-radius: 999px; + transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease; +} + +.doc-link:hover { + transform: translateY(-2px); + background: #1a237e; + color: #fff; +} + +.magic-button { + display: inline-block; + margin-top: 20px; + padding: 14px 26px; + border: 2px dashed #4f6cff; + border-radius: 999px; + color: #4f6cff; + text-decoration: none; + font-weight: 800; + background: rgba(255,255,255,0.85); + animation: pulseButton 2.4s infinite ease-in-out; + box-shadow: 0 18px 30px rgba(79,108,255,0.18); +} + +.magic-button:hover { + transform: scale(1.04); + border-color: #ff4081; + color: #ff4081; +} + +.fun-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); + gap: 14px; + margin-bottom: 20px; +} + +.fun-card { + background: rgba(255,255,255,0.92); + border-radius: 16px; + padding: 16px; + border: 1px solid rgba(79,108,255,0.12); + transition: transform 0.25s ease, box-shadow 0.25s ease; +} + +.fun-card:hover { + transform: translateY(-6px) rotate(-1deg); + box-shadow: 0 22px 45px rgba(79,108,255,0.2); +} + +.fun-icon { + font-size: 2.2rem; + margin-bottom: 10px; + animation: wobbleIcon 3.2s ease-in-out infinite; +} + +.home-fun-note { + margin-top: 18px; + padding: 16px; + border-radius: 14px; + background: rgba(79, 108, 255, 0.08); + color: #1a237e; + font-weight: 600; +} + +.confetti-zone { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + pointer-events: none; +} + +.confetti { + position: absolute; + font-size: 1.8rem; + opacity: 0.8; + animation: spinFloat 4s infinite ease-in-out; +} + +.confetti-1 { top: 10%; left: 12%; animation-delay: 0s; } +.confetti-2 { top: 22%; right: 14%; animation-delay: 0.5s; } +.confetti-3 { bottom: 16%; left: 18%; animation-delay: 1s; } +.confetti-4 { bottom: 10%; right: 12%; animation-delay: 1.4s; } +.confetti-5 { top: 42%; left: 22%; animation-delay: 0.3s; } +.confetti-6 { bottom: 24%; right: 25%; animation-delay: 0.9s; } + +.sparkle-trail { + position: absolute; + top: 12%; + right: 8%; + width: 100px; + height: 200px; + pointer-events: none; +} + +.sparkle { + position: absolute; + font-size: 1.2rem; + opacity: 0.8; + animation: sparkleTrail 3.5s infinite ease-in-out; +} + +.sparkle-1 { top: 0; left: 0; animation-delay: 0s; } +.sparkle-2 { top: 30%; left: 20%; animation-delay: 0.3s; } +.sparkle-3 { top: 60%; left: 50%; animation-delay: 0.6s; } +.sparkle-4 { top: 10%; left: 70%; animation-delay: 1s; } + +@keyframes rainbowText { + 0%, 100% { color: #1a237e; } + 25% { color: #4f6cff; } + 50% { color: #f50057; } + 75% { color: #ffb300; } +} + +@keyframes popTitle { + 0%, 100% { transform: scale(1); } + 50% { transform: scale(1.04); } +} + +@keyframes textGlow { + 0%, 100% { text-shadow: 0 0 0 rgba(255,255,255,0); } + 50% { text-shadow: 0 0 18px rgba(79,108,255,0.25); } +} + +@keyframes floatCard { + 0%, 100% { transform: translateY(0); } + 50% { transform: translateY(-8px); } +} + +@keyframes floatEmoji { + 0%, 100% { transform: translateY(0); } + 50% { transform: translateY(-12px) rotate(10deg); } +} + +@keyframes spinFloat { + 0% { transform: translate(0, 0) rotate(0deg); opacity: 0.8; } + 50% { transform: translate(12px, -20px) rotate(180deg); opacity: 1; } + 100% { transform: translate(0, 0) rotate(360deg); opacity: 0.8; } +} + +@keyframes pulseButton { + 0%, 100% { transform: scale(1); box-shadow: 0 18px 30px rgba(79,108,255,0.18); } + 50% { transform: scale(1.03); box-shadow: 0 24px 40px rgba(79,108,255,0.28); } +} + +@keyframes wobbleIcon { + 0%, 100% { transform: rotate(0deg); } + 25% { transform: rotate(-12deg); } + 50% { transform: rotate(12deg) translateY(-2px); } + 75% { transform: rotate(-8deg); } +} + +@keyframes sparkleTrail { + 0% { transform: translateY(0) scale(1); opacity: 0.8; } + 50% { transform: translateY(-18px) scale(1.1); opacity: 1; } + 100% { transform: translateY(0) scale(1); opacity: 0.8; } +} diff --git a/hello_app/templates/about.html b/hello_app/templates/about.html index 8611b6414..110059c5a 100644 --- a/hello_app/templates/about.html +++ b/hello_app/templates/about.html @@ -3,5 +3,31 @@ About us {% endblock %} {% block content %} -

About page for the Visual Studio Code Flask tutorial.

+
+
+
Welcome to the Most Animated About Page!
+
This page now has silly animation, dancing emojis, and a Microsoft Docs link.
+
πŸš€βœ¨πŸ€–
+
+ +
+

About page for the Visual Studio Code Flask tutorial.

+

Enjoy a funny animation while you explore Flask, VS Code, and Microsoft docs.

+ +
+ Microsoft Docs +

Learn more from the official Microsoft documentation for Python and Visual Studio Code.

+ + Visit Microsoft Docs for Visual Studio Code + Python + +
+
+ +
+ ✨ + πŸŽ‰ + πŸ’₯ + πŸͺ„ +
+
{% endblock %} diff --git a/hello_app/templates/contact.html b/hello_app/templates/contact.html index 3321c9454..3a12d1761 100644 --- a/hello_app/templates/contact.html +++ b/hello_app/templates/contact.html @@ -3,5 +3,31 @@ Contact us {% endblock %} {% block content %} -

Contact page for the Visual Studio Code Flask tutorial.

+
+
+
Contact the Fun Team!
+
Need help? Send a message and we’ll reply with a dancing emoji.
+
πŸ“¬πŸ’¬πŸ€£
+
+ +
+

Contact page for the Visual Studio Code Flask tutorial.

+

We’re excited to hear from you! Reach out if you have questions about Flask, VS Code, or deploying your app.

+ +
+ Microsoft Docs +

Check the official docs for getting started with Python in Visual Studio Code.

+ + Open Microsoft Docs for Python in VS Code + +
+
+ +
+ 🎈 + 🎊 + πŸ˜„ + 🌟 +
+
{% endblock %} diff --git a/hello_app/templates/home.html b/hello_app/templates/home.html index 81ae24976..88205a67f 100644 --- a/hello_app/templates/home.html +++ b/hello_app/templates/home.html @@ -1,89 +1,65 @@ {% extends "layout.html" %} {% block title %} -Home - Flask Tutorial +Home - Animated Flask Tutorial {% endblock %} {% block content %} - - -
-
-

Welcome to Flask

-

- Your journey into web development starts here. This is the home page for your - Visual Studio Code Flask tutorial. -

- Get Started -
+
+ ✨ + πŸ’« + 🌈 + πŸͺ© +
-{% endblock %} \ No newline at end of file +{% endblock %} From e68e418f9cc75521039b45b66c27b58f0609968a Mon Sep 17 00:00:00 2001 From: Abhishek Date: Wed, 27 May 2026 12:39:38 +0530 Subject: [PATCH 14/14] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index b6064b059..e36976f09 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -14,6 +14,7 @@ variables: # Environment name environmentName: 'abhiappPY' + # Project root folder. Point to the folder containing manage.py file. projectRoot: $(System.DefaultWorkingDirectory) @@ -54,6 +55,8 @@ stages: displayName: 'Upload package' artifact: drop + + - stage: Deploy displayName: 'Deploy Web App' dependsOn: Build