- 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
developbranch - Shared Working Branches
- Working with docs-website-private
- Branch Protection
- Draft PRs
- Using Conventional Commits
- Deploy previews with Amplify
- Reusable components
- Editing existing pages
- Private edits
- Troubleshooting
The Documentation Team and Developer Enablement Team at New Relic welcomes 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 to make code contributions follow the code 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 startYour site is now running at http://localhost:8000!
Node v12 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 v12. 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 Developer Enablement team (#help-deven-websites 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.
- Create a Github account if you don't already have one.
Forkthis 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 Requestto this project with your changes. - If/when your
PRis 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.
Clonethis 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 Requestto this project with your changes. - If/when your
PRis 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 developfrequently. - 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
developvia 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.
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
PRyou wish to submit. - Once you are ready to have the
PRreviewed and merge, click the Ready for review button on thePR.
Please help the maintainers by leveraging the following conventional commit standards in your pull request title and commit messages.
- for minor changes / additions / corrections to content.
- for minor changes / additions / corrections to images.
- for minor non-functional changes / additions to github actions, github templates, package or config updates, etc
git commit -m "chore: adjusting config and content"- for minor functional corrections to code.
git commit -m "fix: typo and prop error in the code of conduct"- for major functional changes or additions to code.
git commit -m "feat(media): creating a video landing page"PRs that are opened from a branch in this repo (not forks) will generate preview links on Amplify automatically. Amplify preview links can be found within the PR under the Checks Tab.
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
Editicon in the upper right corner of the site. - Follow the instructions above to
ForkorClonethe repo and make your edits. - Follow the instructions above to submit a
PRfor 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.
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 resolve by the following:
- Ensure you are using
yarnnotnpm - Always run
git pullwhenever you intend to create a new working branch - Always run
yarnwhenever you git pull
As a last resort, you can completely delete the node_modules folder in the root project directory, and re-run yarn
If you are working on an M1 Mac, you may run into an error like the following when installing node_modules:
gyp info spawn args [ 'BUILDTYPE=Release', '-C', 'build' ]
CC(target) Release/obj.target/nothing/../node-addon-api/nothing.o
LIBTOOL-STATIC Release/nothing.a
warning: /Library/Developer/CommandLineTools/usr/bin/libtool: archive library: Release/nothing.a the table of contents is empty (no object file members in the library define global symbols)
TOUCH Release/obj.target/libvips-cpp.stamp
CXX(target) Release/obj.target/sharp/src/common.o
../src/common.cc:23:10: fatal error: 'vips/vips8' file not found
include <vips/vips8>
1 error generated.
make: *** [Release/obj.target/sharp/src/common.o] Error 1
gyp ERR! build error
gyp ERR! stack Error: `make` failed with exit code: 2
gyp ERR! stack at ChildProcess.onExit (/Users/me/.nvm/versions/node/v15.4.0/lib/node_modules/npm/node_modules/node-gyp/lib/build.js:194:23)
gyp ERR! stack at ChildProcess.emit (node:events:376:20)
gyp ERR! stack at Process.ChildProcess._handle.onexit (node:internal/child_process:284:12)
gyp ERR! System Darwin 20.3.0
gyp ERR! command "/Users/me/.nvm/versions/node/v15.4.0/bin/node" "/Users/me/.nvm/versions/node/v15.4.0/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
gyp ERR! cwd /Users/me/dev/docs-website/node_modules/sharpSolution
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.