Getting Started
This section walks you through everything you need to get your first documentation site published on SharePoint with doctor.
Prerequisites
Section titled “Prerequisites”Before you can publish your first page, make sure the following is in place:
- Node.js 22.13.0 or higher on your machine or build agent.
- Permissions in your tenant to create an Azure Entra ID app registration, and an administrator who can grant admin consent to it.
- A SharePoint site where your documentation gets published. You pass its URL with the
--urloption, or store it in thedoctor.jsonfile.
Install doctor
Section titled “Install doctor”Install doctor globally. Pick the stable release, or the next release to try out the latest changes before they are published.
Using npm:
npm i -g @estruyf/doctorUsing yarn:
yarn global add @estruyf/doctorUsing npm:
npm i -g @estruyf/doctor@nextUsing yarn:
yarn global add @estruyf/doctor@nextTo quickly get started, we provided a sample repository which allows you to test out all the functionalities of Doctor.
Set up certificate authentication
Section titled “Set up certificate authentication”doctor does not ship with an application of its own, so before you can publish anything you bring your own Azure Entra ID app registration and authenticate with its certificate:
- Create an app registration in the Azure Portal.
- Add the Sites.FullControl.All application permission from SharePoint, and grant admin consent for your tenant.
- Generate a certificate, upload it to the app registration, and convert it to the
PKCSformat so you can pass it todoctor.
The certificate authentication section walks you through each of these steps with the required commands and screenshots.
Publish your first pages
Section titled “Publish your first pages”Once doctor is installed and your app registration and certificate are in place:
-
Create the folder structure and the
doctor.jsonfile in your project:Terminal window doctor init --url <url> --appId <appId> --tenant <tenant> -
Write your content as Markdown files in the source folder (
./srcby default). Check the pages section for the front matter each page supports. -
Check what the next publishing run will do:
Terminal window doctor status -
Publish your content to SharePoint:
Terminal window doctor publish --certificate ./cert.pfx
Next steps
Section titled “Next steps”- Content: write your pages, build the navigation, and reuse snippets with partials and shortcodes.
- CLI: all the commands
doctoroffers. - Configuration: every command argument and
doctor.jsonsetting. - CI/CD: publish your documentation automatically from Azure DevOps or GitHub Actions.