-
Fork this repository.
-
Clone your forked repo to your machine.
git clone https://github.com/<your-username>/algorithm-visualizer.git
-
Install Docker, if not already installed.
-
Install dependencies, and run the server.
cd algorithm-visualizer npm install npm run dev
-
Open
http://localhost:8080/
in a web browser.
-
Create a branch addressing the issue/improvement you'd like to tackle.
git checkout -b my-problem-fixer-branch
-
Write some awesome code.
-
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
-
Create a pull request from
my-problem-fixer-branch
branch on your forked repo tomaster
branch on the main repo.