Skip to content

Latest commit

 

History

History
60 lines (43 loc) · 1.73 KB

CONTRIBUTING.md

File metadata and controls

60 lines (43 loc) · 1.73 KB

Contributing

Review the Code of Conduct.

Where to start

View issues tagged with the Good First Issues label to find good first feature requests and bugs to fix.

Visit https://github.com/sadanandpai/resume-builder/issues to view all issues.


Development

Running the environment locally or in Docker

Run the environment locally or in Docker by following the instructions at Running the environment.


Creating a template

TODO(sadanandpai): Per issue #175, add instructions for how to create a template.


Submit a change

  1. Fork the repo.

  2. Clone the forked repo.

    $ git clone FORKED_REPO
    
  3. Install the dependencies

    $ yarn install
    
  4. Check out a new branch based and name it to what you intend to do:

    $ git checkout -b BRANCH_NAME
    
  5. Run the project

    $ yarn dev
    
  6. Commit your changes

    1. Commit to the forked repository

      $ git commit -am 'Add some proper message'
      

      Please provide a git message that explains what you've done.

    2. Push to the branch

      $ git push origin BRANCH_NAME
      
    3. Make a pull request (PR). Ensure you send the PR to the main branch

    Once done, our developer will review the changes and merge to main branch.