This document is intended for DevDocs maintainers.
PRs should be approved by at least one maintainer before being merged.
PRs that add or update documentations should always be merged locally, and the app deployed, before the merge is pushed to GitHub.
This workflow is required because there is a dependency between the local and production environments. The thor docs:download
command downloads documentations from production files uploaded by the thor docs:upload
command. If a PR adding a new documentation is merged and pushed to GitHub before the files have been uploaded to production, the thor docs:download
will fail for the new documentation and the docker container will not build properly until the new documentation is deployed to production.
The process for updating docs is as follow:
thor docs:commit
command documented below).thor docs:upload
(documented below).thor docs:clean
(documented below).Note: changes to public/docs/docs.json
should never be committed. This file reflects which documentations have been downloaded or generated locally, which is always none on a fresh git clone
.
In order to deploy DevDocs, you must:
be given access to Heroku, configure the Heroku CLI on your computer, and familiarize yourself with Heroku’s UI and CLI, as well as that of New Relic (accessible through the Heroku dashboard).
be given access to DevDocs’s Sentry instance (for JS error tracking) and familiarize yourself with its UI.
brew install awscli
on macOS) and configure the AWS CLI on your computer. The configuration must add a named profile called “devdocs”:
aws configure --profile devdocs
.bash_profile
as such:
export DEVDOCS_DL_USERNAME="username"
export DEVDOCS_DL_PASSWORD="password"
In addition to the publicly-documented commands, the following commands are aimed at DevDocs maintainers:
thor docs:package
Generates packages for one or more documentations. Those packages are intended to be uploaded to DevDocs’s MaxCDN push zone by maintainers via the thor docs:upload
command, and downloaded by users via the thor docs:download
command.
Versions can be specified as such: thor docs:package rails@5.2 node@10\ LTS
.
Packages can also be automatically generated during the scraping process by passing the --package
option to thor docs:generate
.
thor docs:upload
This command does two operations:
thor docs:download
command).For the command to work, you must have the AWS CLI and MaxCDN credentials configured as indicated above.
Important: the app should always be deployed immediately after this command has finished running. Do not run this command unless you are able and ready to deploy DevDocs.
To upload all documentations that are packaged on your computer, run thor docs:upload --packaged
.
To test your configuration and the effect of this command without uploading anything, pass the --dryrun
option.
thor docs:commit
Shortcut command to create a Git commit for a given documentation once it has been updated. Scraper and assets/
file changes will be committed. The commit message will include the most recent version that the documentation was updated to. If some files were missed by the commit, use git commit --amend
to add them to the commit. The command may be run before thor docs:upload
is run, but the commit should not be pushed to GitHub before the files have been uploaded and the app deployed.
thor docs:clean
Shortcut command to delete all package files (once uploaded via thor docs:upload
, they are not needed anymore).
Once docs have been uploaded via thor docs:upload
(if applicable), you can push to the DevDocs master branch (or merge the PR containing the updates). If the Travis build succeeds, the Heroku application will be deployed automatically.
If any issue arises, run heroku rollback
to rollback to the previous version of the app (this can also be done via Heroku’s UI). Note that this will not revert changes made to documentation files that were uploaded via thor docs:upload
. Try and fix the issue as quickly as possible, then re-deploy the app. Reach out to other maintainers if you need help.
If this is your first deploy, make sure another maintainer is around to assist.
Interested in helping maintain DevDocs? Come talk to us on Gitter :)