Skip to content

Commit

Permalink
fix the changes
Browse files Browse the repository at this point in the history
  • Loading branch information
April Wang from ETHZ committed Mar 27, 2024
1 parent 18de2ed commit 6c197e3
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 4 deletions.
31 changes: 31 additions & 0 deletions CHEATSHEET.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
## Install NVM

https://github.com/nvm-sh/nvm

We will use NVM to downgrade our node environment to 10.15.3. This version is indicated in `package.json`. If we work with a higher level of node, the `node-sass` package might be incompatable.

```
nvm install 12.12.2
node --version
```


## Run the Front-End Repo

The front-end will run at localhost:3000

```
cd algorithm-visualizer
npm install
npm run start
```

## Run the Server Locally

The server will run at localhost:8080

```
cd algorithm-visualizer-server
npm install
npm run watch
```
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 6c197e3

Please sign in to comment.