Skip to content

Commit d174ba0

Browse files
committed
Fix .gitpot.yml
1 parent c0c632e commit d174ba0

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.gitpod.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@ tasks:
22
- init: >
33
git clone https://github.com/algorithm-visualizer/server.git &&
44
cd server &&
5-
echo -e "GITHUB_CLIENT_ID=dummy\nGITHUB_CLIENT_SECRET=dummy" > .env.local && npm install &&
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 &&
67
cd ..
78
command: cd server && npm run watch
89
- init: >
910
npm install &&
10-
echo 'DANGEROUSLY_DISABLE_HOST_CHECK=true' > .env
11+
echo 'DANGEROUSLY_DISABLE_HOST_CHECK=true' > .env.local
1112
command: npm start
1213
ports:
1314
- port: 3000

CONTRIBUTING.md

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

33
> #### Table of Contents
44
> - [Running Locally](#running-locally)
5-
> - [Run in Gitpod](#run-in-gitpod)
5+
> - [Running in Gitpod](#running-in-gitpod)
66
> - [Directory Structure](#directory-structure)
77
88
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!
@@ -38,9 +38,9 @@ Are you a first-timer in contributing to open source? [These guidelines](https:/
3838
3939
5. Open [`http://localhost:3000/`](http://localhost:3000/) in a web browser.
4040
41-
## Run in Gitpod
41+
## Running in Gitpod
4242
43-
You can also run algorithm-visualizer in Gitpod, a free online dev environment for GitHub.
43+
You can also run `algorithm-visualizer` in Gitpod, a free online dev environment for GitHub.
4444
4545
[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/algorithm-visualizer/algorithm-visualizer)
4646

0 commit comments

Comments
 (0)