Azure
https://learn.microsoft.com/en-us/azure/devops/pipelines/get-started/key-pipelines-concepts?view=azure-devops#stage
Azure
Top 10 Azure Services Every Developer Must know
1.Virtual Machine
2. Azure Storage
3. Azure SQL
4. WebApp
5. Azure Function
6. CosmosDB
7. Azure Service Bus
8. Azure Active Directory
9. Azure Key Vault
10. Application Insight
- Azure DevOps or other CI/CD platform
Visual Studio Team Services(VSTS) is now Azure DevOps Services
Azure Repos
Get unlimited, cloud-hosted private Git repos for your project.
Get unlimited private Git repository hosting and support for TFVC that scales from a hobby project to the world’s largest repository.
Azure Boards
Plan, track, and discuss work across your teams.
Track work with Kanban boards, backlogs, team dashboards, and custom reporting
Combine drag-and-drop sprint planning and flexible work item tracking with comprehensive traceability to have the perfect home for all your ideas–big and small.
Azure Pipelines
Continuously build, test, and deploy to any platform and cloud.
Get cloud-hosted pipelines for Linux, macOS, and Windows. Build web, desktop and mobile applications. Deploy to any cloud or on‑premises.
Automate your builds and deployments with Pipelines so you spend less time with the nuts and bolts and more time being creative.
Azure Functions
IF EXIST "G:\_backups\DSP_Backup" (ECHO "G:\inetpub\wwwroot\DSP-PROD" " Removing.....")
IF EXIST "G:\_backups\DSP_Backup" (RMDIR /Q /S "G:\_backups\DSP_Backup")
IF NOT EXIST "G:\_backups\DSP_Backup" ( MKDIR "G:\_backups\DSP_Backup")
`MKDIR` command is used to create the directory "C:\_backups\DSP_Backup".
IF EXIST "G:\_backups\DSP_Backup" (
ECHO "Copying backup of G:\inetpub\wwwroot\DSP-PROD to G:\_backups\DSP_Backup .........."
XCOPY /E /I "G:\inetpub\wwwroot\DSP-PROD" "G:\_backups\DSP_Backup"
)
Comments
Post a Comment