diff options
| author | Fuwn <[email protected]> | 2021-03-22 17:53:45 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-03-22 17:53:45 -0700 |
| commit | 0ee07d55647ca176f5d1c8e479dc054fa03daaab (patch) | |
| tree | e66c9abf66725f3922420e57d43508eb61786459 | |
| parent | page: Brief development instructions (diff) | |
| download | book-0ee07d55647ca176f5d1c8e479dc054fa03daaab.tar.xz book-0ee07d55647ca176f5d1c8e479dc054fa03daaab.zip | |
fix: Add WorldServer overwrite instructions to "Development" page
| -rw-r--r-- | src/introduction/development.md | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/introduction/development.md b/src/introduction/development.md index 720b99c..b9f50b0 100644 --- a/src/introduction/development.md +++ b/src/introduction/development.md @@ -12,3 +12,12 @@ Once Rust is installed, run `cargo install sqlx-cli`. 1. Navigate to the cloned instance of Whirl. 2. Create database file; `sqlx database create`. 3. Migrate database; `sqlx migrate run`. + +## Overwriting WorldServer address +1. Navigate to your `/etc/hosts` file, on Windows this is usually located at + `C:\Windows\System32\drivers\etc\hosts`. +2. Add these rules; + ``` + 0.0.0.0 www.3dcd.com + 0.0.0.0 test.3dcd.com + ``` |