Skip to content

Commit c0c632e

Browse files
committed
Merge branch 'master' of https://github.com/anudeepreddy/algorithm-visualizer into anudeepreddy-master
2 parents 54e204d + ed4daf2 commit c0c632e

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

.gitpod.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
tasks:
2+
- init: >
3+
git clone https://github.com/algorithm-visualizer/server.git &&
4+
cd server &&
5+
echo -e "GITHUB_CLIENT_ID=dummy\nGITHUB_CLIENT_SECRET=dummy" > .env.local && npm install &&
6+
cd ..
7+
command: cd server && npm run watch
8+
- init: >
9+
npm install &&
10+
echo 'DANGEROUSLY_DISABLE_HOST_CHECK=true' > .env
11+
command: npm start
12+
ports:
13+
- port: 3000
14+
onOpen: notify
15+
- port: 8080
16+
onOpen: ignore

CONTRIBUTING.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
> #### Table of Contents
44
> - [Running Locally](#running-locally)
5+
> - [Run in Gitpod](#run-in-gitpod)
56
> - [Directory Structure](#directory-structure)
67
78
Are you a first-timer in contributing to open source? [These guidelines](https://opensource.guide/how-to-contribute/#how-to-submit-a-contribution) from GitHub might help!
@@ -37,6 +38,12 @@ Are you a first-timer in contributing to open source? [These guidelines](https:/
3738
3839
5. Open [`http://localhost:3000/`](http://localhost:3000/) in a web browser.
3940
41+
## Run in Gitpod
42+
43+
You can also run algorithm-visualizer in Gitpod, a free online dev environment for GitHub.
44+
45+
[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/algorithm-visualizer/algorithm-visualizer)
46+
4047
## Directory Structure
4148
4249
- [**branding/**](branding) contains representative image files.

0 commit comments

Comments
 (0)