AZURE : WINDOWS SELF HOSTED AGENT - From Your Laptop to Live Azure App Service
Self Hosted Agent Windows From Your Laptop to Live Azure App Service End-to-End Flow Visualization text [YOUR LAPTOP] → [AZURE DEVOPS] → [SELF-HOSTED AGENT] → [AZURE APP SERVICE] → [INTERNET USERS] Phase 1: Code Creation on Your Laptop Step 1.1: Local Development On Your Laptop: text C:\Projects\propel-pro-2025\ ├── app.py ├── requirements.txt └── azure-pipelines.yml What Happens: You write Flask code in app.py on your Windows laptop You define dependencies in requirements.txt You create the YAML pipeline configuration Technical Details: Your laptop has Python, Flask, and git installed Code is stored locally in your file system Phase 2: Code Commit & Push Step 2.1: Git Operations On Your Laptop: bash git add . git commit -m "Update Flask API" git push origin master What Happens: Local Repository: Your code is committed to local git history Push to Remote: Code is sent to Azure Repos in the cloud Trigger Detection: Azure DevOps detect...