Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #96

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ To see a live demo, check out [http://www.quakejs.com](http://www.quakejs.com).

## Building binaries

To note, if you're trying to run a dedicated server, the most up to date binaries are already included in the `build` directory of this repository. You can proceed directly to the next section if you wish to use the included binaries.

As a prerequisite, you'll need to have a working build of [Emscripten](http://github.com/kripken/emscripten), then:

```shell
Expand All @@ -16,7 +18,6 @@ make PLATFORM=js EMSCRIPTEN=<path_to_emscripten>

Binaries will be placed in `ioq3/build/release-js-js/`.

To note, if you're trying to run a dedicated server, the most up to date binaries are already included in the `build` directory of this repository.


## Running locally
Expand All @@ -33,6 +34,12 @@ Set `content.quakejs.com` as the content server:
echo '{ "content": "content.quakejs.com" }' > bin/web.json
```

On windows, do not include the outer ':

```commandline
echo { "content": "content.quakejs.com" } > bin/web.json
```

Run the server:

```shell
Expand Down