Skip to content

Commit

Permalink
Readme: Replace mentions of WOTLK to SOD
Browse files Browse the repository at this point in the history
  • Loading branch information
TheGroxEmpire authored Feb 3, 2024
1 parent 64b5085 commit e6f1f1b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ echo 'export GOPATH=$HOME/go' >> $HOME/.bashrc
echo 'export PATH=$PATH:$GOPATH/bin' >> $HOME/.bashrc
source $HOME/.bashrc

cd wotlk
cd sod

# Install protobuf compiler and Go plugins
sudo apt update && sudo apt upgrade
Expand All @@ -55,25 +55,25 @@ npm install
Alternatively, install Docker and your workflow will look something like this:
```sh
git clone https://github.com/wowsims/sod.git
cd wotlk
cd sod

# Build the docker image and install npm dependencies (only need to run these once).
docker build --tag wowsims-sod .
docker run --rm -v $(pwd):/sod wowsims-sod npm install

# Now you can run the commands as shown in the Commands sections, preceding everything with, "docker run --rm -it -p 8080:8080 -v $(pwd):/sod wowsims-sod".
# For convenience, set this as an environment variable:
WOTLK_CMD="docker run --rm -it -p 8080:8080 -v $(pwd):/sod wowsims-sod"
SOD_CMD="docker run --rm -it -p 8080:8080 -v $(pwd):/sod wowsims-sod"

# ... do some coding on the sim ...

# Run tests
$(echo $WOTLK_CMD) make test
$(echo $SOD_CMD) make test

# ... do some coding on the UI ...

# Host a local site
$(echo $WOTLK_CMD) make host
$(echo $SOD_CMD) make host
```

## Windows
Expand Down

0 comments on commit e6f1f1b

Please sign in to comment.