Getting started
The project is divided into two repositories:
AuroraLauncher - Launcher Server, which distributes game files, is responsible for connecting the authentication service, etc.
Launcher - The client launcher through which the game will be launched.
The setup of these two parts is done separately from each other, so let's start with the Launcher Server.
Install and configuration
After you have downloaded Launcher Server, place it in any folder and run it. You can run it this way:
chmod +x ./LauncherServer-linux // If there are no rights to execute
./LauncherServer-linux
LauncherServer-win.exe
chmod +x ./LauncherServer-macos // If there are no rights to execute
./LauncherServer-macos
Note for MacOS
If on MacOS you get a permission denied
error after running chmod +x ./LauncherServer-macos
, then run xattr -dr com.apple.quarantine ./LauncherServer-macos
Arguments run Launcher Server
--host
- the listening address is specified--port
- the port to listen on is specified
The server will create a configuration file and then shut down. After that, you can configure it. All settings are stored in the LauncherServerConfig.hjson
file. Below is an example with a description of all the settings.
{
configVersion: 0
projectID: 00000000-0000-0000-0000-000000000000
projectName: "Example Project"
lang: en
branch: stable
env: dev
mirrors: []
auth:
{
type: accept
}
skin:
{
skinUrl: http://example.com/skin/{uuid}
capeUrl: http://example.com/cape/{uuid}
}
api:
{
host: 0.0.0.0
port: 1370
useSSL: false
ssl:
{
cert: /path/to/cert.pem
key: /path/to/key.pem
}
disableListing: false
hideListing: false
}
}
Description of config settings
configVersion
- version of the current config format, currently not usedprojectID
- unique project ID, generated on first launch and used in some places in the Launcher/Launcher Server codeprojectName
- project namelang
- language used to display information in the Launcher Server. The currently possible options are ru
and en
for Russian and English, respectivelyenv
- Launcher Server mode. Possible options are prod
, debug
and dev
. Currently not usedmirrors
- list of mirrors for downloading game files. For more information, see the section Downloading clientsauth
- authorization method settings block, more details in the section Auth settingsskin
- block of settings for the method of obtaining skins, more details in the section Setting up the skin systemapi
- block of settings for connecting to the Launcher Server. Contains the following settings:
host
- internal IP from which the Launcher Server will listen for requests. Do not touch if you do not know what it is and how it worksport
- port that the Launcher Server will listen to. Similar to the previous pointdisableListing
- disable the distribution of folders and files by the Launcher Server, it is recommended to enable when proxying files, for example through NginxhideListing
- disable listing of folders and files, does not work ifdisableListing
is set totrue
useSSL
- use SSL certificate for the server. When using the certificate, do not forget to change theaddress
url fromws
towss
in the Launcherssl
- paths for the used certificate files in PEM format. You can specify both absolute and relative (from the directory in which the Launcher Server was started) path to the files. More about the cert and key parameters
To work with a secure connection using an SSL certificate, it is recommended to use server proxying via Nginx instead of configuring ssl
in the Launcher Server. This approach allows you to more conveniently configure the connection (for example, using automated certbot scripts), and also shift part of the load from the Node.js server to Nginx.