All help is welcome and greatly appreciated! (we need it) If you would like to contribute to the project, the following instructions should get you started...
- HTML/Typescript/Javascript editor
- VS Code sucks through one of the devs use it
- the main dev (me) use JetBrains' WebStorm
- NodeJS (Node 14.x or higher)
- Yarn
- Git
When you're doing LITERALLY ANYTHING make sure it's on the Fat-Cats-LLC/overseerr repo and not sct/overseerr. @internationalcrisis and I will berate you and call you mean things and the upstreams maintainers will probably call you dumb or some shit idfk.
-
Fork the repository to your own GitHub account and clone it to your local device:
git clone https://github.com/YOUR_USERNAME/overseerr.git cd overseerr/
-
Add the remote
upstream
:git remote add upstream https://github.com/Fat-Cats-LLC/overseerr.git
-
Create a new branch:
git checkout -b BRANCH_NAME develop
- It is recommended to give your branch a meaningful name, relevant to the feature or fix you are working on.
- Good examples:
docs-docker
feature-new-system
fix-title-cards
- Bad examples:
bug
docs
feature
fix
patch
- Good examples:
- It is recommended to give your branch a meaningful name, relevant to the feature or fix you are working on.
-
Run the development environment:
yarn yarn dev
-
Create your patch and test your changes.
- If you are taking on an existing bug or feature ticket, please comment on the issue to avoid multiple people working on the same thing.
- All commits must follow Conventional Commits
- You suck if you don't follow it but we'll just bitch at you and call you names and then merge your shit anyways
- Please make meaningful commits, or squash them prior to opening a pull request.
- Do not squash commits once people have begun reviewing your changes.
- Always rebase your commit to the latest
develop
branch. Do not mergedevelop
into your branch. - It is your responsibility to keep your branch up-to-date. Your work will not be merged unless it is rebased off the latest
develop
branch. - You can create a "draft" pull request early to get feedback on your work.
- Your code must be formatted correctly, or the tests will fail.
- We use Prettier to format our code base. It should automatically run with a Git hook, but it is recommended to have the Prettier extension installed in your editor and format on save.
- If you have questions or need help, you can reach out via Discussions.
- Only open pull requests to
develop
, nevermaster
! Any pull requests opened tomaster
will be closed.
When adding new UI text, please try to adhere to the following guidelines:
- Speak English.
- Use the Oxford comma where appropriate.
- Use the appropriate Unicode characters for ellipses, arrows, and other special characters/symbols.
- this may change as some unicode is gay
- Capitalize proper nouns, such as Plex, Radarr, Sonarr, Telegram, Slack, Pushover, etc. Be sure to also use the official capitalization for any abbreviations; e.g., IMDb has a lowercase 'b', whereas TMDB and TheTVDB have a capital 'B'.
- Title case headings, button text, and form labels. Note that verbs such as "is" should be capitalized, whereas prepositions like "from" should be lowercase (unless as the first or last word of the string, in which case they are also capitalized).
- Capitalize the first word in validation error messages, dropdowns, and form "tips." These strings should not end in punctuation.
- Ensure that toast notification strings are complete sentences ending in punctuation.
- If an additional description or "tip" is required for a form field, it should be styled using the global CSS class
label-tip
. - In full sentences, abbreviations like "info" or "auto" should not be used in place of full words, unless referencing the name/label of a specific setting or option which has an abbreviation in its name.
- See 1. Atleast try to make your shit make sense.
- Keep the sneed in Oversneedrr.
Translations are merged from upstream Overseerr, with the strings replaced as needed. Contribute fuck ups to sct's shiz but if there is a fuck up that is not in sct's proj but mine then open a PR or issue
This contribution guide was inspired by the Next.js and Radarr contribution guides.