Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Github Pages and GitLab pages like functionality in TFS / Azure DevOps Server [closed]

Tags:

azure-devops

Is it possible to have the functionality of creating a static website in TFS / Azure DevOps Server similar to that available in Github Pages and GitLab pages ? Links: https://docs.gitlab.com/ee/user/project/pages/getting_started/pages_from_scratch.html https://pages.github.com/

like image 738
Zohaib Amanzai Avatar asked Oct 11 '18 09:10

Zohaib Amanzai


People also ask

Does Azure DevOps work with GitLab?

This integration is possible with both the self-managed and SaaS versions of GitLab. The integration works only with Azure DevOps/VSTS git version control. TFVC (Team Foundation Version Control) isn't supported.

Is Azure DevOps Git or TFS?

Git in Visual Studio, Azure DevOps Services, and TFS is standard Git. You can use Visual Studio with third-party Git services, and you can also use third-party Git clients with TFS.

Is GitHub going to replace Azure DevOps?

But yes, a complete switch to GitHub from Azure DevOps might be possible by replacing Azure DevOps pipelines with GitHub actions.

How does GitHub integrate with Azure DevOps?

Connect Azure DevOps Services to GitHub Enterprise Server Or, from the New GitHub connection dialog, choose GitHub Enterprise Server. Select the authentication method. Choose the configuration that you set up in Step 4 of Register your OAuth configuration in Azure DevOps Services, and then choose Connect.


2 Answers

As the comment by Yan mentions, closest you can get is Wiki, but its not meant for that, it requires auth to use it.

There is no such feature in Azure DevOps, I'm afraid.

This issue exists: https://visualstudio.uservoice.com/forums/330519-azure-devops-formerly-visual-studio-team-services/suggestions/16908766-support-for-static-doc-hosting-similar-compatible

like image 166
4c74356b41 Avatar answered Oct 16 '22 11:10

4c74356b41


Depending on how broad you make your definition of Azure DevOps. On Azure, it's easy to host a static content website and it's possible to link an Azure Website to a Git Repository in Azure DevOps. You can even serve a website straight from Blob Storage.

Or you can set up an Azure Pipeline to package, optionally transform and publish the content using Jekyll or Hugo.

It's not as simple as GitHub Pages, but ultimately, once set up, just as simple and eventually more powerful depending on what you want to achieve.

For publishing project documentation, you can also use Public Projects and allow guest access to the Wiki.

like image 45
jessehouwing Avatar answered Oct 16 '22 11:10

jessehouwing