- Table of Contents
- Guidelines for contributing
- Getting started
- Local development
- Dependencies
- Unit tests
- Using multiple versions of Node
- Cloning vs forking
- Submitting a PR from a forked repo
- Submitting a PR from a cloned repo
- Using the
develop
branch - Shared Working Branches
- Working with docs-website-private
- Branch Protection
- Draft PRs
- Using Conventional Commits
- Deploy previews with Netlify
- Reusable components
- Editing existing pages
- Private edits
- Split testing and running experiments
- Troubleshooting
The Documentation Team and Developer Enablement Team at New Relic welcome contributions to this repository.
There are several ways you can contribute:
- If you wish to make documentation edits or add new documentation, follow our documentation contribution guidelines.
- If you'd like to make code contributions, or make content contributions locally, follow the contribution guidelines below.
You can serve this site locally to quickly see your changes and additions before you PR them. To get started, navigate into your new site’s directory and start it up, as follows.
cd docs-website/
yarn
yarn start
Your site is now running at http://localhost:8000
!
The first time you build the site locally, it will take upwards of 20 minutes. This is normal, and will take significantly less time afterward.
Node v18 is used in this project as specified in .nvmrc.
To run the unit tests, run yarn test
in the terminal. If you would like to
have the tests automatically re-run, use yarn run test:watch
If you intend to run multiple versions of Node please be aware that the New Relic Docs Site is currently on Node v16. Therefore it's recommended you use Node Version Manager NVM to manage Node versions.
Review this article which clearly explains the setup and configuration of NVM.
To be able to clone this repository and contribute you will need to be given write access to the repository. This is reserved for New Relic Doc Writers. Contact the Docs Engineering team (#help-documentation Slack channel) if you need write access.
To contribute without write access, you can fork the repository and contribute as needed. If you're planning to leave a fork open for a long time (for example, you're working on a complex set of changes to many docs), sync your fork occasionally to avoid merge conflicts.
This repository contains workflows that are not meant to be run on forks. If they do run, they will fail and generate alerts on every failed run.
By default, a user should see a prompt like this after cloning the repo when looking at the actions tab:
If you do see this, then you are good to go -- DON'T enable the workflows.
If the workflows are enabled and running, you will want to disable them. You can disable workflows by navigating to the settings of the forked repository, clicking on the Actions
tab, and selecting the check to Disable Actions
as shown below.
- Create a Github account if you don't already have one.
Fork
this this repository.- Make your changes.
- Test your changes! Review the project's READ ME for instructions on how to build and run tests locally.
- Submit a
Pull Request
to this project with your changes. - A preview will start building automatically when a PR is opened. To update the preview after further commits, leave a comment on the PR that says
netlify build
. - If/when your
PR
is accepted, the automation in this project will build the site and deploy a new version of the code todocs.newrelic.com
. - And you are done!
- Create a Github account if you don't already have one.
Clone
this repository.- Create a new branch locally.
- Make your changes.
- Test your changes! Review the project's READ ME for instructions on how to build and run tests locally.
- Submit a
Pull Request
to this project with your changes. - A preview will start building automatically when a PR is opened. To update the preview after further commits, leave a comment on the PR that says
netlify build
. - If/when your
PR
is accepted, the automation in this project will build the site and deploy a new version of the code todocs.newrelic.com
. - And you are done!
Use the develop
branch when creating your working branch locally. develop
will always contain the most
current source code. The develop
branch will be merged into the main
branch by the maintainers when a new release is ready to ship.
All pull requests should be made against the develop
branch. When merging to develop
all code should be considered ready to be deployed to production.
If you plan on coordinating changes across several people, and feel your code isn't "ready to ship" use a shared working branch strategy.
- create a new branch to collaborate with others via GIT and push that branch up to the remote repository.
git checkout -b shared-branch
- share that branch with others you are collaborating with. They'll need to run:
git pull origin shared-branch
- All contributors should keep that branch up to date by running
git pull origin develop
frequently. - Push all changes to the remote repository:
git push origin shared-branch
- Resolve any merge conflicts.
- When your work is complete, merge the shared working branch into
develop
via a PR.
For New Relic employees working on pre-release content that needs to remain private, we have a private docs repo. Before you begin creating content in the private repo, refer to the private docs wiki on to how interact with the repository.
The develop
and main
branches have "Branch Protection" enabled in Github. In order to merge a pull request into develop
, you must have (at least) one approval. Additionally a few of the "PR Checks" are required and must pass before the pull request can be merged in.
You can review full Branch Protection details here, and check out a visual representation of the workflow below:
Draft PRs
are ideal for in progress work or work you need others to contribute to.
To submit a Draft PR:
- Make your code changes and submit a
Pull Request
. - Select Create a draft pull request on the PR submission screen on Github.
You can find this by clicking on the Create pull request button at the bottom of the
PR
you wish to submit. - Once you are ready to have the
PR
reviewed and merge, click the Ready for review button on thePR
.
Please help the maintainers by leveraging the following conventional commit standards in your commit messages. You don't need to apply this format to the pull request title–just to commits.
As a reminder, here's the format for a single-line commit, but you are welcome to add the optional body and footer messages.
<type>(optional scope): <description>
When choosing a type, you can pick from any of the standard types (feat, fix, style, test, or chore) or you can add your own.
Note: There is a documentation
type, but please refrain from using it for general documentation changes since it is intended for changes to the repository's documentation (such as README.md
and CONTRIBUTING.md
)
As far as scope, we recommend that you include this because it helps us identify relevant commits. For the docs project, the scope might refer to the part of the docs you are editing (for example, APM or errors inbox). If you are suggesting a code change to the docs site, insert the section of the codebase you worked on.
Here are some examples:
Chores are best for changes that users don't see directly, such as improving unit tests or reducing technical debt. You might use them for minor non-functional changes/additions to github actions, github templates, package or config updates, etc.
git commit -m "chore(translation): extend translation unit test coverage"
Fix is used for minor functional corrections to code.
git commit -m "fix(Log management): repair broken link in introduction"
Feat is for major functional changes or additions to code.
git commit -m "feat(errors inbox): add new documents"
PRs that are opened from a branch in this repo will generate preview links on Netlify automatically.
netlify bot
will leave a comment on your PR. You can monitor the progress via the comment details which include:
- The status of the preview build. (
processing
,ready
, orfailed
) - The commit that is being built or has failed.
- Once the build succeeds, the comment will update with a link to view the preview site.
In order to drive simplicity and ease of use New Relic has provided a set of reusable components you can leverage when creating documentation. Refer to our Component Guide for more information.
- To edit an existing page you can view the page's source code by clicking on the
Edit
icon in the upper right corner of the site. - Follow the instructions above to
Fork
orClone
the repo and make your edits. - Follow the instructions above to submit a
PR
for your change.
If you have access to a private version of this repository, you can contribute and review content without sharing it publicly.
NOTE: with all of these steps, if you have SSH Keys set up, you will want to use the SSH URL (not the HTTPS URL).
- Click the fork button in the GitHub UI for the docs-website repository.
- Clone the fork on your computer:
git clone https://github.com/yourname/docs-website
. - Change into the fork repo:
cd docs-website
. - Connect the public repo:
git remote add upstream https://github.com/newrelic/docs-website.git
. - Pull in content from the public repo:
git pull upstream develop
. - Make a new branch:
git checkout -b your_branch_name
. - Push your branch up to the public repository:
git push upstream your_branch_name
.
If you have access to Split.io as a New Relic employee you can execute a split test on the site to measure different scenarios if you are attempting to gather data to make a product decision or conduct an experiment.
To execute a split test you'll need to be comfortable with Split.io as well as be able to provide the different treatments (in code) of what you wish to test.
To understand how to use Split.io it's recommended to watch this Introduction video
Decide what you want to test, what your hypothesis is and begin to define your experiment.
- Why are you running the experiment, what is the goal?
- How will you measure to see if you reached the goal?
- What is your metrics for success?
- How long will it take to get to results you want?
Review the Split.io documentation for creating a split test and targeting users.
Measure results by setting up a metric
A good metric:
- is meaningful
- is directional
- has significance
- is fit for the test you are running
Run the experiment and pick a winner!
This section attempts to capture some of the more common troubleshooting techniques to try if you face issues in contributing.
Many of the common errors you'll face can be resolved by the following:
- Ensure you are using
yarn
notnpm
- Always run
git pull
whenever you intend to create a new working branch - Always run
yarn
whenever you git pull
As a last resort, you can completely delete the node_modules
folder in the root project directory, and re-run yarn
When you start up the site via yarn start
, you may see errors in your terminal like the following:
ERROR
[BABEL] Note: The code generator has deoptimised the styling of /Users/jdoe/code/docs-website/src/content/docs/licenses/license-information/other-licenses/services-licenses.mdx as it exceeds the max of 500KB.
Solution
You can ignore the error as this is a babel warning when compiling MDX docs. This does not affect the functionality of the site.