Skip to content

Commit dc21d27

Browse files
committed
Merge branch 'anudeepreddy-master'
2 parents 54e204d + d174ba0 commit dc21d27

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

.gitpod.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
tasks:
2+
- init: >
3+
git clone https://github.com/algorithm-visualizer/server.git &&
4+
cd server &&
5+
npm install &&
6+
echo -e "GITHUB_CLIENT_ID=dummy\nGITHUB_CLIENT_SECRET=dummy\nAWS_ACCESS_KEY_ID=dummy\nAWS_SECRET_ACCESS_KEY=dummy" > .env.local &&
7+
cd ..
8+
command: cd server && npm run watch
9+
- init: >
10+
npm install &&
11+
echo 'DANGEROUSLY_DISABLE_HOST_CHECK=true' > .env.local
12+
command: npm start
13+
ports:
14+
- port: 3000
15+
onOpen: notify
16+
- port: 8080
17+
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+
> - [Running in Gitpod](#running-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+
## Running 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)