From 5b11c4852bf249b9502f64c28e4ebdccb952a8f2 Mon Sep 17 00:00:00 2001 From: Vasilis The Pikachu Date: Tue, 1 Oct 2024 16:59:08 +0200 Subject: [PATCH 1/9] Add a list of forks with prebuilt servers for player convenience --- src/SUMMARY.md | 1 + .../setup/server-hosting-tutorial.md | 2 +- src/en/server-hosting/popular-forks-cdns.md | 39 +++++++++++++++++++ 3 files changed, 41 insertions(+), 1 deletion(-) create mode 100644 src/en/server-hosting/popular-forks-cdns.md diff --git a/src/SUMMARY.md b/src/SUMMARY.md index ee232480d..7bf0c722d 100644 --- a/src/SUMMARY.md +++ b/src/SUMMARY.md @@ -270,6 +270,7 @@ Server Hosting - [Setting up SS14.Watchdog](en/server-hosting/setting-up-ss14-watchdog.md) - [OAuth](en/server-hosting/oauth.md) - [Setting up a Discord Bot](en/server-hosting/setting-up-redbot.md) +- [Known prebuilt server package forks](en/server-hosting/popular-forks-cdns.md) - [Maintenance]() - [Debugging server lockups](en/server-hosting/maintenance/debugging-server-lockups.md) diff --git a/src/en/general-development/setup/server-hosting-tutorial.md b/src/en/general-development/setup/server-hosting-tutorial.md index f31664d65..15ff7109e 100644 --- a/src/en/general-development/setup/server-hosting-tutorial.md +++ b/src/en/general-development/setup/server-hosting-tutorial.md @@ -11,7 +11,7 @@ If you wish to modify your server to add your own content. You will need a [prop ``` 1. Download and install the [.NET 8 Runtime](https://dotnet.microsoft.com/en-us/download/dotnet/8.0). You only need "x64" under "run console apps" not "hosting bundle" from the downloads page. -2. Download the latest version of the server from [our builds page](https://wizards.cdn.spacestation14.com/fork/wizards), for your operating system. If you are looking for another fork, ask that fork if they have a server builds page. Otherwise refer to the [Custom Code](#level-2-server-with-custom-code) section below. +2. Download the latest version of the server from [our builds page](https://wizards.cdn.spacestation14.com/fork/wizards), for your operating system. If you are looking for another fork, [try looking here](../../server-hosting/popular-forks-cdns.md). 3. Extract that to a directory somewhere. 4. Run `run_server.bat` (Windows) or `Robust.Server` [via terminal on macOS/Linux](#running-the-server-on-macos-or-linux)) 5. Open your Space Station 14 Launcher and click on ``Direct Connect To Server`` and type in ``localhost`` and click connect. You can also add it as a favorite if you click the ``Add Favorite`` button. diff --git a/src/en/server-hosting/popular-forks-cdns.md b/src/en/server-hosting/popular-forks-cdns.md new file mode 100644 index 000000000..7a923b528 --- /dev/null +++ b/src/en/server-hosting/popular-forks-cdns.md @@ -0,0 +1,39 @@ +# List of codebases with prebuilt server packages + +This document will serve as a list of forks known to have a prebuilt server software for players to download. + +This doc was last updated at 2024-10-01 13:52:04 UTC + +| Fork name | URL | Available platforms | +|---|---|---| +| Wizard's Den | [Link](https://wizards.cdn.spacestation14.com/fork/wizards) | Windows, macOS (x64/Intel), Linux (x64/ARM64) | +| Harmony 14 | [Link](http://cdn.harmony14.com/fork/harmony/) | Windows, macOS (x64/Intel), Linux (x64/ARM64) | +| Solaris 14 | [Link](https://ss14-cdn.mw-gc.com/fork/MWGSolaris14) | Windows, macOS (x64/Intel), Linux (x64/ARM64) | +| Axolotl MRP | [Link](https://axolotl.yuniiworks.de/cdn/fork/axolotl/) | Linux (x64) | + +FAQ: + +- The fork I want is not listed here. + - You will need to contact the fork you want a server build for and ask them if they provide one. If they do suggest them to add themselves here. + +- The fork I want is listed here, but my platform is not available for download. + - You will need to contact the fork asking if they are willing to build for your platform. + +- The fork does not provide prebuilds (or any other issue where you are unable to retrive a server prebuild) + - Your only choice is to compile the forks codebase yourself if available. Instructions can be found [here](../general-development/setup/server-hosting-tutorial.md#level-2-server-with-custom-code) + +- I'm a server host and I want to add myself here. + - You are free to make a PR yourself in the docs or ping @vasilisiscool (322708417540259841) in #hosting on discord with all the information needed. + + \ No newline at end of file From 3b6d58fea072bfdb87ee7c2a0604d9b72592ea52 Mon Sep 17 00:00:00 2001 From: Vasilis Date: Tue, 1 Oct 2024 21:24:58 +0200 Subject: [PATCH 2/9] Add desclaimer --- src/en/server-hosting/popular-forks-cdns.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/en/server-hosting/popular-forks-cdns.md b/src/en/server-hosting/popular-forks-cdns.md index 7a923b528..e874afaaf 100644 --- a/src/en/server-hosting/popular-forks-cdns.md +++ b/src/en/server-hosting/popular-forks-cdns.md @@ -4,6 +4,14 @@ This document will serve as a list of forks known to have a prebuilt server soft This doc was last updated at 2024-10-01 13:52:04 UTC +```admonish danger +All forks listed here (Exept Wizard's Den) are **not vetted**. We only just put the links in a convinient place. + +Unlike game clients, server executables have way more access to the system they are ran on and as such may be harmful to your security. + +Please ensure you trust the fork before you run any server files. We are not responsible for any damage caused to your system by 3rd party forks. +``` + | Fork name | URL | Available platforms | |---|---|---| | Wizard's Den | [Link](https://wizards.cdn.spacestation14.com/fork/wizards) | Windows, macOS (x64/Intel), Linux (x64/ARM64) | @@ -36,4 +44,4 @@ Rules for listing: Template | SERVER NAME | [Link](SERVER_LINK) | Windows, macOS (x64/Intel), Linux (x64/ARM64) | ---> \ No newline at end of file +--> From 892c9b9de6aae1649447a6f520086dcf37a4db71 Mon Sep 17 00:00:00 2001 From: Vasilis Date: Tue, 1 Oct 2024 22:14:31 +0200 Subject: [PATCH 3/9] Update popular-forks-cdns.md --- src/en/server-hosting/popular-forks-cdns.md | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/src/en/server-hosting/popular-forks-cdns.md b/src/en/server-hosting/popular-forks-cdns.md index e874afaaf..38031bbc2 100644 --- a/src/en/server-hosting/popular-forks-cdns.md +++ b/src/en/server-hosting/popular-forks-cdns.md @@ -7,17 +7,16 @@ This doc was last updated at 2024-10-01 13:52:04 UTC ```admonish danger All forks listed here (Exept Wizard's Den) are **not vetted**. We only just put the links in a convinient place. -Unlike game clients, server executables have way more access to the system they are ran on and as such may be harmful to your security. - -Please ensure you trust the fork before you run any server files. We are not responsible for any damage caused to your system by 3rd party forks. +Third party server builds are not affiliated with the project, and have the samse risks as running any random executable off the internet. Only run them if you trust them to not take over your computer ``` -| Fork name | URL | Available platforms | -|---|---|---| -| Wizard's Den | [Link](https://wizards.cdn.spacestation14.com/fork/wizards) | Windows, macOS (x64/Intel), Linux (x64/ARM64) | -| Harmony 14 | [Link](http://cdn.harmony14.com/fork/harmony/) | Windows, macOS (x64/Intel), Linux (x64/ARM64) | -| Solaris 14 | [Link](https://ss14-cdn.mw-gc.com/fork/MWGSolaris14) | Windows, macOS (x64/Intel), Linux (x64/ARM64) | -| Axolotl MRP | [Link](https://axolotl.yuniiworks.de/cdn/fork/axolotl/) | Linux (x64) | +| Fork name | URL | Available platforms | License | +|---|---|---|---| +| Wizard's Den | [Link](https://wizards.cdn.spacestation14.com/fork/wizards) | Windows, macOS (x64/Intel), Linux (x64/ARM64) | MIT | +| Harmony 14 | [Link](http://cdn.harmony14.com/fork/harmony/) | Windows, macOS (x64/Intel), Linux (x64/ARM64) | Someone please tell @vasilisiscool on discord | +| Solaris 14 | [Link](https://ss14-cdn.mw-gc.com/fork/MWGSolaris14) | Windows, macOS (x64/Intel), Linux (x64/ARM64) | MIT | +| Axolotl MRP | [Link](https://axolotl.yuniiworks.de/cdn/fork/axolotl/) | Linux (x64) | MIT | +| DeltaV | [Link](https://cdn.delta-v.org/fork/delta-v/) | Windows, macOS (x64/Intel), Linux (x64/ARM64) | AGPL | FAQ: @@ -43,5 +42,5 @@ Rules for listing: 6. Dehubbed servers or any servers breaking these rules will be removed. Template -| SERVER NAME | [Link](SERVER_LINK) | Windows, macOS (x64/Intel), Linux (x64/ARM64) | +| SERVER NAME | [Link](SERVER_LINK) | Windows, macOS (x64/Intel), Linux (x64/ARM64) | LICENSE | --> From a65dddf600ef4d205a02a4fd7584ddf7311fb5ab Mon Sep 17 00:00:00 2001 From: Vasilis Date: Tue, 1 Oct 2024 22:48:06 +0200 Subject: [PATCH 4/9] a --- src/en/server-hosting/popular-forks-cdns.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/en/server-hosting/popular-forks-cdns.md b/src/en/server-hosting/popular-forks-cdns.md index 38031bbc2..b7642753a 100644 --- a/src/en/server-hosting/popular-forks-cdns.md +++ b/src/en/server-hosting/popular-forks-cdns.md @@ -7,7 +7,7 @@ This doc was last updated at 2024-10-01 13:52:04 UTC ```admonish danger All forks listed here (Exept Wizard's Den) are **not vetted**. We only just put the links in a convinient place. -Third party server builds are not affiliated with the project, and have the samse risks as running any random executable off the internet. Only run them if you trust them to not take over your computer +Third party server builds are not affiliated with the project, and have the same risks as running any random executable off the internet. Only run software that you trust. ``` | Fork name | URL | Available platforms | License | From 75a8074e2827d8080dcdedde08a3ac58e04b5000 Mon Sep 17 00:00:00 2001 From: Vasilis Date: Tue, 1 Oct 2024 22:59:05 +0200 Subject: [PATCH 5/9] Harmony is mit --- src/en/server-hosting/popular-forks-cdns.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/en/server-hosting/popular-forks-cdns.md b/src/en/server-hosting/popular-forks-cdns.md index b7642753a..f99c1b121 100644 --- a/src/en/server-hosting/popular-forks-cdns.md +++ b/src/en/server-hosting/popular-forks-cdns.md @@ -13,7 +13,7 @@ Third party server builds are not affiliated with the project, and have the same | Fork name | URL | Available platforms | License | |---|---|---|---| | Wizard's Den | [Link](https://wizards.cdn.spacestation14.com/fork/wizards) | Windows, macOS (x64/Intel), Linux (x64/ARM64) | MIT | -| Harmony 14 | [Link](http://cdn.harmony14.com/fork/harmony/) | Windows, macOS (x64/Intel), Linux (x64/ARM64) | Someone please tell @vasilisiscool on discord | +| Harmony 14 | [Link](http://cdn.harmony14.com/fork/harmony/) | Windows, macOS (x64/Intel), Linux (x64/ARM64) | MIT | | Solaris 14 | [Link](https://ss14-cdn.mw-gc.com/fork/MWGSolaris14) | Windows, macOS (x64/Intel), Linux (x64/ARM64) | MIT | | Axolotl MRP | [Link](https://axolotl.yuniiworks.de/cdn/fork/axolotl/) | Linux (x64) | MIT | | DeltaV | [Link](https://cdn.delta-v.org/fork/delta-v/) | Windows, macOS (x64/Intel), Linux (x64/ARM64) | AGPL | From ef80a1643d664017d5732bf2c9cb65a00f9cc833 Mon Sep 17 00:00:00 2001 From: Vasilis Date: Wed, 2 Oct 2024 01:10:40 +0200 Subject: [PATCH 6/9] Fine :( --- src/en/server-hosting/popular-forks-cdns.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/en/server-hosting/popular-forks-cdns.md b/src/en/server-hosting/popular-forks-cdns.md index f99c1b121..8a1cc2a8e 100644 --- a/src/en/server-hosting/popular-forks-cdns.md +++ b/src/en/server-hosting/popular-forks-cdns.md @@ -2,7 +2,7 @@ This document will serve as a list of forks known to have a prebuilt server software for players to download. -This doc was last updated at 2024-10-01 13:52:04 UTC +This doc was last updated at 2024-10-01 ```admonish danger All forks listed here (Exept Wizard's Den) are **not vetted**. We only just put the links in a convinient place. From e18cba8d71c13b482a71d6a2b740ec226cb83d16 Mon Sep 17 00:00:00 2001 From: Vasilis Date: Wed, 2 Oct 2024 01:28:14 +0200 Subject: [PATCH 7/9] SUggestioin --- src/en/server-hosting/popular-forks-cdns.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/en/server-hosting/popular-forks-cdns.md b/src/en/server-hosting/popular-forks-cdns.md index 8a1cc2a8e..6065bc934 100644 --- a/src/en/server-hosting/popular-forks-cdns.md +++ b/src/en/server-hosting/popular-forks-cdns.md @@ -5,7 +5,7 @@ This document will serve as a list of forks known to have a prebuilt server soft This doc was last updated at 2024-10-01 ```admonish danger -All forks listed here (Exept Wizard's Den) are **not vetted**. We only just put the links in a convinient place. +All forks listed here (Exept Wizard's Den) are **not vetted by Wizard's Den**. We only just put the links in a convinient place. Third party server builds are not affiliated with the project, and have the same risks as running any random executable off the internet. Only run software that you trust. ``` From 76e479f74a866d26b1bf09b8a640bfde1e4c434e Mon Sep 17 00:00:00 2001 From: Vasilis Date: Wed, 2 Oct 2024 18:54:40 +0200 Subject: [PATCH 8/9] Review 69 --- src/en/server-hosting/popular-forks-cdns.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/src/en/server-hosting/popular-forks-cdns.md b/src/en/server-hosting/popular-forks-cdns.md index 6065bc934..10f795ab6 100644 --- a/src/en/server-hosting/popular-forks-cdns.md +++ b/src/en/server-hosting/popular-forks-cdns.md @@ -5,7 +5,7 @@ This document will serve as a list of forks known to have a prebuilt server soft This doc was last updated at 2024-10-01 ```admonish danger -All forks listed here (Exept Wizard's Den) are **not vetted by Wizard's Den**. We only just put the links in a convinient place. +All forks listed here (Except Wizard's Den) are **not vetted by Space Wizards**. We only put the links here for convenience. Third party server builds are not affiliated with the project, and have the same risks as running any random executable off the internet. Only run software that you trust. ``` @@ -18,7 +18,7 @@ Third party server builds are not affiliated with the project, and have the same | Axolotl MRP | [Link](https://axolotl.yuniiworks.de/cdn/fork/axolotl/) | Linux (x64) | MIT | | DeltaV | [Link](https://cdn.delta-v.org/fork/delta-v/) | Windows, macOS (x64/Intel), Linux (x64/ARM64) | AGPL | -FAQ: +## FAQ: - The fork I want is not listed here. - You will need to contact the fork you want a server build for and ask them if they provide one. If they do suggest them to add themselves here. @@ -32,15 +32,16 @@ FAQ: - I'm a server host and I want to add myself here. - You are free to make a PR yourself in the docs or ping @vasilisiscool (322708417540259841) in #hosting on discord with all the information needed. - From 5446e99072ca9b16584d0485b1b6d826db5edf62 Mon Sep 17 00:00:00 2001 From: Vasilis Date: Wed, 2 Oct 2024 18:55:48 +0200 Subject: [PATCH 9/9] Update SUMMARY.md --- src/SUMMARY.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SUMMARY.md b/src/SUMMARY.md index 7bf0c722d..faf30270b 100644 --- a/src/SUMMARY.md +++ b/src/SUMMARY.md @@ -270,7 +270,7 @@ Server Hosting - [Setting up SS14.Watchdog](en/server-hosting/setting-up-ss14-watchdog.md) - [OAuth](en/server-hosting/oauth.md) - [Setting up a Discord Bot](en/server-hosting/setting-up-redbot.md) -- [Known prebuilt server package forks](en/server-hosting/popular-forks-cdns.md) +- [Known forks with prebuilt server builds](en/server-hosting/popular-forks-cdns.md) - [Maintenance]() - [Debugging server lockups](en/server-hosting/maintenance/debugging-server-lockups.md)