Manuel Kaufmann
Manuel Kaufmann
We have guides written to get started with Sphinx, MkDocs and we also have a tutorial. However, all of them require the reader to follow a set of steps in...
We could use the [GitHub API to get the available branches](https://docs.github.com/en/rest/branches/branches?apiVersion=2022-11-28#list-branches) and use a `ChoiceField` to populate the `default_branch` when adding a new project. It could be a similar approach...
We should communicate to our users that before adding _another_ custom domain for their project, they should probably consider using subprojects. This would avoid having: * `users.docs.company.com` * `sales.docs.company.com` *...
I saw there was a new release of `sphinx-lint` that support adding it to pre-commit: https://github.com/sphinx-contrib/sphinx-lint/. We should consider adding it to our pre-commit config. * Related: #2049
 Closes #1587
We can't upgrade to 4.x because there are some manual steps required. Here is the migration guide: https://django-csp.readthedocs.io/en/latest/configuration.html#migrating-from-django-csp-3-8
We discussed about migrating the [`preview`](https://github.com/readthedocs/actions) GH action into the product itself. The user should be able to mark `Add link to preview in the pull request` with `comment` and...
If you go to https://docs.readthedocs.com/robots.txt, you get a 404 I suppose this is because we redirect https://docs.readthedocs.com/ to https://docs.readthedocs.com/platform/stable/ and there may be something happening with that particular redirect. Another...
`conda-forge` on GitHub has _a lot of repositories_ and that produces different issues on our side. The most recent one was that our Celery task was finishing due to timeout...
This is a follow up of the changes introduced in: * #12220 We upgrade our settings to be like: ```python @property def STORAGES(self): return { "staticfiles": { "BACKEND": self.RTD_STATICFILES_STORAGE, "OPTIONS":...