Skip to content

kselena/docs

 
 

Repository files navigation

Reviewpad Documentation

This repo contains the source powering up docs.reviewpad.com

Getting started

Prerequisites

  1. Git
  2. Nodejs: version v16.14.0 or greater
  3. Yarn v1: See Yarn website for installation instructions
  4. A fork of the repo (for any contributions)
  5. A clone of the reviewpad/docs repo on your local machine

Installation

  1. Navigate into the project root
cd docs
  1. Install the website's npm dependencies
yarn

Running locally

  1. Start a local development server
yarn start

Note

You browser should open automatically. If that's not the case please navigate to http://localhost:3000.

Note

Most changes are reflected live without having to restart the server.

Contributing

Set up IDE

We strongly recommend using Visual Studio Code as your IDE.

Install extensions

Configure VSCode

Open the project in VSCode, open the command palette (Ctrl+Shift+P) and search for Preferences: Open Workspace Settings (JSON).

Paste the following configuration:

{
    "editor.formatOnPaste": true,
    "editor.formatOnSave": true,
    "files.autoSave": "onFocusChange"
}

Create a branch

  1. Checkout the main branch from any folder in your local docs.reviewpad.com repository
git checkout main
  1. Ensure you have the latest main code
git pull origin main
  1. Create a new branch
git checkout -b THE-NAME-OF-MY-BRANCH

Warning

Please replace THE-NAME-OF-MY-BRANCH with a suitable name for your branch

Make the change

  1. Follow the "Running locally" instructions
  2. Save the files and check in the browser

Test the change

If possible, test any visual changes in all latest versions of common browsers, on both desktop and mobile.

Push it

  1. Stage and commit your changes
git add -A && git commit -m "MY MESSAGE"

Warning

Please replace MY MESSAGE with a conventional commit message, such as fix: typo on installation section

  1. Push your changes
git push MY-FORK-NAME THE-NAME-OF-MY-BRANCH

Warning

Please replace MY-FORK-NAME with the name of your fork Please replace THE-NAME-OF-MY-BRANCH with the name of your branch

  1. Go to the reviewpad/docs repo and you should see recently pushed branches.

  2. Follow GitHub's instructions.

  3. If possible, include screenshots of visual changes. A preview build is triggered after your pull request is opened.

Note

After a pull request is created, a preview is built automatically.

Troubleshooting

  • yarn reset to clear the local cache

Reach out

If you have any questions, please reach out to us at our Discord community 💪

License

This project is licensed under GNU Lesser General Public License v3.0

About

Source powering Reviewpad documentation

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • JavaScript 96.1%
  • Shell 1.8%
  • CSS 1.5%
  • TypeScript 0.6%