Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sel-project/selery
Server for Minecraft (Bedrock Engine) and Minecraft: Java Edition written in D
https://github.com/sel-project/selery
bedrock-edition bedrock-engine java-edition mcbe mcje mcpe minecraft selery server
Last synced: 3 months ago
JSON representation
Server for Minecraft (Bedrock Engine) and Minecraft: Java Edition written in D
- Host: GitHub
- URL: https://github.com/sel-project/selery
- Owner: sel-project
- License: mit
- Archived: true
- Created: 2017-01-25T10:33:22.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-01-01T00:21:58.000Z (about 6 years ago)
- Last Synced: 2024-07-31T15:05:36.640Z (6 months ago)
- Topics: bedrock-edition, bedrock-engine, java-edition, mcbe, mcje, mcpe, minecraft, selery, server
- Language: D
- Homepage:
- Size: 7.59 MB
- Stars: 55
- Watchers: 15
- Forks: 4
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Selery
======Selery is a server for Minecraft (Bedrock Engine) 1.2 and Minecraft: Java Edition 1.10-1.12 written in [D](https://dlang.org).
[![Chat](https://img.shields.io/badge/chat-on%20discord-7289da.svg)](https://discord.gg/c9uwNMW)
## Installation
### From a pre-built package
[![GitHub release](https://img.shields.io/github/release/sel-project/selery.svg)](https://github.com/sel-project/selery/releases)
Pre-built packages are compiled with the latest version of LDC in release mode and can be found in the [releases](https://github.com/sel-project/selery/releases) page.
```
curl -Ls https://goo.gl/5kfhJG | bash
```### From source
To build Selery from source you'll need a [D](https://dlang.org) compiler ([DMD](https://wiki.dlang.org/DMD) for faster compilation, suitable for testing, or
[LDC](https://wiki.dlang.org/LDC) for faster and better code, better for production) and [DUB](https://code.dlang.org/getting_started), D's package manager,
which is usually included in both DMD and LDC's packages.Packages and installers are available for several operating systems and architectures at [dlang.org's download page](https://dlang.org/download.html).
- Clone the repository using `git clone git://github.com/sel-project/selery` or download the zipped repository from the latest release.
- If you want to use the latest release run `git checkout $(git describe --tags --abbrev=0)` in the repository's location.
- Build by running `build.bat` on Windows or `build.sh` on Linux/OS X.
- Run the generated executable file.All in one:
```
git clone git://github.com/sel-project/selery
cd selery
./build.sh
```The build scripts supports some useful options that can be viewed by launching it with `--help`.
:warning: Due to [issue 17508](https://issues.dlang.org/show_bug.cgi?id=17508), Windows x86 must be linked using Microsoft's compiler (`-a x86_mscoff`) instead of DMD's. This action is performed automatically by the build script.
## Build Status
| OS | Arch | DMD (debug) | LDC (debug) | LDC (release) |
|--------:|:------:|:--------------------------------:|:--------------------------------:|:----------------------------------:|
| Windows | x86-64 | [![][win64-dmd-debug]][appveyor] | [![][win64-ldc-debug]][appveyor] | [![][win64-ldc-release]][appveyor] |
| Windows | x86 | [![][win86-dmd-debug]][appveyor] | [![][win86-ldc-debug]][appveyor] | [![][win86-ldc-release]][appveyor] |
| Linux | x86-64 | [![][lin64-dmd-debug]][travis] | [![][lin64-ldc-debug]][travis] | [![][lin64-ldc-release]][travis] |
| OS X | x86-64 | [![][osx64-dmd-debug]][travis] | [![][osx64-ldc-debug]][travis] | [![][osx64-ldc-release]][travis] |## Setting up
Selery's configuration file is created when the server is started in the same path as the executable.
It is named `selery.toml` for the default configuration, `selery.hub.toml` for the hub and `selery.node.toml` for the node.Every option can also be overriden by a command-line option without altering the configuration file.
```
selery --display-name="My Minecraft Server"
selery --java-enabled=false
selery --language=it
selery --command-me=false
selery --bedrock-accepted-protocols=160
selery --java-addresses=0.0.0.0:25565,192.168.1.216:8129
```**More useful command-line options:**
- `--about` or `-a` to print the software's build informations in JSON format. The `--min` option can be used to print a minified JSON instead of a pretty-printed one.
- `--init` or `-i` to initialize the configuration file.
- `--update-config` or `-uc` to rewrite the configuration file, maintaining the current configuration. It should be used after updating the software to a newer version that changes the configuration format.
- `--reset` to reset the whole configuration file to its default values.[appveyor]: https://ci.appveyor.com/project/Kripth/selery
[travis]: https://travis-ci.org/sel-project/selery
[win64-dmd-debug]: https://sel-bot.github.io/status/sel-project/selery/windows_x64_dmd_debug.svg
[win64-ldc-debug]: https://sel-bot.github.io/status/sel-project/selery/windows_x64_ldc2_debug.svg
[win64-ldc-release]: https://sel-bot.github.io/status/sel-project/selery/windows_x64_ldc2_release.svg
[win86-dmd-debug]: https://sel-bot.github.io/status/sel-project/selery/windows_x86_dmd_debug.svg
[win86-dmd-debug]: https://sel-bot.github.io/status/sel-project/selery/windows_x86_dmd_debug.svg
[win86-ldc-debug]: https://sel-bot.github.io/status/sel-project/selery/windows_x86_ldc2_debug.svg
[win86-ldc-release]: https://sel-bot.github.io/status/sel-project/selery/windows_x86_ldc2_release.svg
[lin64-dmd-debug]: https://sel-bot.github.io/status/sel-project/selery/linux_x86-64_dmd_debug.svg
[lin64-ldc-debug]: https://sel-bot.github.io/status/sel-project/selery/linux_x86-64_ldc2_debug.svg
[lin64-ldc-release]: https://sel-bot.github.io/status/sel-project/selery/linux_x86-64_ldc2_release.svg
[lin86-dmd-debug]: https://sel-bot.github.io/status/sel-project/selery/linux_x86_dmd_debug.svg
[lin86-ldc-debug]: https://sel-bot.github.io/status/sel-project/selery/linux_x86_ldc2_debug.svg
[lin86-ldc-release]: https://sel-bot.github.io/status/sel-project/selery/linux_x86_ldc2_release.svg
[osx64-dmd-debug]: https://sel-bot.github.io/status/sel-project/selery/osx_x86-64_dmd_debug.svg
[osx64-ldc-debug]: https://sel-bot.github.io/status/sel-project/selery/osx_x86-64_ldc2_debug.svg
[osx64-ldc-release]: https://sel-bot.github.io/status/sel-project/selery/osx_x86-64_ldc2_release.svg