Skip to content

Latest commit

 

History

History
64 lines (41 loc) · 3.5 KB

CONTRIBUTING.md

File metadata and controls

64 lines (41 loc) · 3.5 KB

Getting Started

Installing Open Library

For instructions on setting up a local developer's instance of Open Library, please refer to the Installation Guide. Also, refer to the Quickstart Guide.

Resources for Contributors

Look through our issues related to contributing.

Want to Participate in the Community?

  • Ask here to join our Open Library slack: internetarchive#686
  • Join us for our Open Library Community Call every Tuesday @ 11:30am PT

Submitting Issues

Data Cleanup

Adding Data to Open Library

Tagging

  • If a task requires immediate fixing, please respond to its corresponding issue by asking if it can be promoted to blocker using the blocker issue label.

Picking Tasks

We usually discuss weekly goals via our Tuesday Community Call and using slack.

Picking 1st task

Our Roadmap(s)

Development

Whenever working on a new feature/hotfix/refactor, the first step is to make sure a corresponding issue exists. We then take this issue number and affix it to the branch name which we will use for development.

A branch name consists of the: issue number, whether it is a feature/hotfix/refactor, and a human readable slug, e.g:

123/refactor/simplifying-authentication-using-xauthn

With respect to client side patches, before submitting your patch you'll want to check it adheres to code styling rules and tests. We use npm to test our client side code.

npm install
npm test

If it passes your patch is ready for review!

Note, many issues can be fixed automatically without any manual work from your part using the following command:

npm run lint:fix

Pull Requests

  • Pull Requests (PRs) should link to the issue they resolve. Please take the time to check whether someone has already raised the issue you are solving. At the very least PRs should contain enough detail in the description to explain the purpose of the PR; what feature it adds, or problem it solves. Please expect PRs without sufficient details to be rejected until an clear description of the benefit is added. Thank you for your contributions!

  • When your code is ready for review, please follow our Pull Request Template to close the corresponding Issue.