Skip to content

Latest commit

 

History

History
51 lines (31 loc) · 1.14 KB

CONTRIBUTING.md

File metadata and controls

51 lines (31 loc) · 1.14 KB

Contributing

Table of Contents

Running Locally

  1. Fork this repository.

  2. Clone your forked repo to your machine.

    git clone https://github.com/<your-username>/algorithm-visualizer.git    
  3. Install Docker, if not already installed.

  4. Install dependencies, and run the server.

    cd algorithm-visualizer
    
    npm install
    
    npm run dev
  5. Open http://localhost:8080/ in a web browser.

Creating a Pull Request

  1. Create a branch addressing the issue/improvement you'd like to tackle.

    git checkout -b my-problem-fixer-branch
  2. Write some awesome code.

  3. Commit the changes, and push them to my-problem-fixer-branch branch on your forked repo.

    git add .
    
    git commit -m "Explain my awesome changes"
    
    git push origin my-problem-fixer-branch
  4. Create a pull request from my-problem-fixer-branch branch on your forked repo to master branch on the main repo.