# Introduction
An overview of the solution to create a web site from a GitHub repo's documentation.
## Assumptions
- The source repo has documentation in markdown files
- The source repo was created following our workflow approach and therefore has the necessary subscription id, client id and client secret repo secrets (TF_SUBSCRIPTION_ID, TF_CLIENT_ID, TF_CLIENT_SECRET)
- The documentation can be successfully built locally with the Sphinx tooling. See `documentation/how-tos/publish-markdown-with-sphinx` in this repo.
- If you want to have a custom domain for your site, you will need to request that separately.
## Site Provisioning
The site is provisioned as an Azure WebApp using our standard Terraform-based approach.
Repo: [ets-ses-docs](https://github.com/Seagen/ets-ses-docs)
The Terraform provisions:
- [rg-etsdocs-dev-001](https://portal.azure.com/#@seagen.onmicrosoft.com/resource/subscriptions/e5395dee-1c79-4699-95bb-8ad8c2ee9fae/resourceGroups/rg-etsdocs-dev-001) Resource Group
- [asp-etsdocs-plan](https://portal.azure.com/#@seagen.onmicrosoft.com/resource/subscriptions/e5395dee-1c79-4699-95bb-8ad8c2ee9fae/resourceGroups/rg-etsdocs-dev-001/providers/Microsoft.Web/serverFarms/asp-etsdocs-plan/webHostingPlan) App Service Plan
- Multiple web apps within the App Service Plan. For example, for this repo it is [app-etsdocs-gdct](https://portal.azure.com/#@seagen.onmicrosoft.com/resource/subscriptions/e5395dee-1c79-4699-95bb-8ad8c2ee9fae/resourceGroups/rg-etsdocs-dev-001/providers/Microsoft.Web/sites/app-etsdocs-gdct/appServices)
Each Web App running in the App Service Plan is:
- SKU: Standard (S1) [See Microsoft pricing](https://azure.microsoft.com/en-us/pricing/details/app-service/windows/)
- Operating System: Windows
- Runtime Stack: Node 18 LTS
- Publishing Model: Code
- Instance Count: 1
Default domain provisioned is https://app-etsdocs-[appname].azurewebsites.net
Note: An alternate approach is to integrate with GitHub Pages. Unfortunately, pages published on GitHub Pages are public. We cannot have Seagen internal documents on the public web.
## Onboarding a Repo
Once a repo can successfully build sphinx documentation locally (see Assumptions above), the steps to onboard it to publish documentation to a web site are:
**Terraform**
1. Append the name of the site to the Terraform list variable `apps` for the ets Terraform workspaces. For example, for dev: [ets-ses-docs-dev](https://app.terraform.io/app/Seagen/workspaces/ets-ses-docs-dev/variables)
2. Apply the Terraform by running the deployment workflow. Verify the site is created in Azure (will be empty content for now).
3. Download the publish profile for your web app in the Azure Portal. _Note: It's a different publish profile per environment. If you are only publishing from your `main` branch, you only need to download the prod web-app profile._
**Documentation Deployment**
1. Copy the GitHub workflow `sphinx.yml` from this repo to the workflow directory of the source repo.
2. Modifications to make to the destination `sphinx.yml`:
- _If you are using a documentation directory `src/docs`, you can skip this step._
The `paths` to the docs in the `push:` trigger need to match the location of the documentation path in the repo. Likewise, the source directory for the `sphinx-build` command in the `build-sphinx` step also needs to match the location of the documentation path in the repo. (Hint: find/replace `src/docs` with whatever the path to your docs is)
- The `app-name` suffix in the `publish-docs` step needs to match the name of what was setup in Terraform step 1 above.
- In your repo, navigate to the Settings page. Under "Secrets and variables | Actions", create an "environment secret" called `DOCS_PUBLISHING_PROFILE`. This is a per-environment secret. Set it up for at least your `prd` environment. Copy the contents of the publishing profile as the secret value.
EXAMPLE
I want to deploy documentation for my app `spaceship`.
_Terraform_:
1. I append "spaceship" to the list of variables in Terraform: ["gdct","launchpad","spaceship"]
1. Run the workflow to create a new web app in Azure called `app-etsdocs-spaceship`
1. Verify that the site https://app-etsdocs-spaceship.azurewebsites.net is available. Can also look at Azure Portal's [asp-etsdocs-plan](https://portal.azure.com/#@seagen.onmicrosoft.com/resource/subscriptions/e5395dee-1c79-4699-95bb-8ad8c2ee9fae/resourceGroups/rg-etsdocs-dev-001/providers/Microsoft.Web/serverFarms/asp-etsdocs-plan/apps) App Service Plan.
1. Within the Azure Portal, I download the publishing profile for your newly-deployed web app.
_Deployment_:
1. Back in my source repo with the documentation, my docs are all under a `src/docs` directory off the root. I've already verified sphinx builds it successfully and it looks great on my local box when I open the generated site content. I copy the `sphinx.yml` to my `.github/workflows` directory.
1. In `sphinx.yml`, I modify the `app-name` under `publish-docs` to be `app-etsdocs-spaceship` to match what is provisioned in Azure.
1. In my repo, I create a new environment secret `DOCS_PUBLISHING_PROFILE` for my `dev` environment and another for my `prd` environment. I paste the contents of the appropriate downloaded publish profile into the secret value and save the secret.
1. I merge `sphinx.yml` into the `development` branch and it executes. I verify my content displays correctly on my site.
1. I don't want to deploy from `development` in the future, only from merges to `main` to I update my `push: | branches:` section accordingly.