Includes both the authentication and secure servers
Install Go and git, then clone and enter the repository
$ git clone https://github.com/PretendoNetwork/splatoon
$ cd splatoon
Install Docker either through your systems package manager or the official installer
To build the container:
$ docker build -t splatoon .
$ docker image prune --filter label=stage=builder -f
Optionally you may provide BUILD_STRING
to --build-arg
to set the authentication server build string
$ docker build -t splatoon --build-arg BUILD_STRING=auth-build-string .
$ docker image prune --filter label=stage=builder -f
To run the image first create a .env
file with your Configuration set before using docker run
Example:
PN_SPLATOON_AUTHENTICATION_SERVER_PORT=60000
...
$ docker run --name splatoon --env-file .env -it friends
The image is compatible popular container managers such as Docker Compose and Portainer
To compile using Go, go get
the required modules and then go build
to your desired location. You may also want to tidy the go modules, though this is optional
$ go get
$ go mod tidy
$ go build -o build/splatoon
The server is now built to build/splatoon
When compiling with only Go, the authentication servers build string is not automatically set. This should not cause any issues with gameplay, but it means that the server build will not be visible in any packet dumps or logs a title may produce
To compile the servers with the authentication server build string, add -ldflags "-X 'main.serverBuildString=BUILD_STRING_HERE'"
to the build command, or use make
to compile the server
Compiling using make
will read the local .git
directory to create a dynamic authentication server build string, based on your repositories remote origin and current commit
Install make
either through your systems package manager or the official download. We provide two different rules; A default
rule which compiles using go
, and a docker
rule which compiles using docker
. Please refer to each sections setup instructions before continuing with your preferred rule
To build using go
$ make
The server is now built to build/friends
To build using docker
$ make docker
The image is now ready to run
All configuration options are handled via environment variables
.env
files are supported
Name | Description | Required |
---|---|---|
PN_SPLATOON_KERBEROS_PASSWORD |
Kerberos password for the server | Yes |
PN_SPLATOON_AUTHENTICATION_SERVER_PORT |
Port for the authentication server | Yes |
PN_SPLATOON_SECURE_SERVER_HOST |
Host name for the secure server (should point to the same address as the authentication server) | Yes |
PN_SPLATOON_SECURE_SERVER_PORT |
Port for the secure server | Yes |
PN_SPLATOON_ACCOUNT_GRPC_HOST |
Host name for your account server gRPC service | Yes |
PN_SPLATOON_ACCOUNT_GRPC_PORT |
Port for your account server gRPC service | Yes |
PN_SPLATOON_ACCOUNT_GRPC_API_KEY |
API key for your account server gRPC service | No (Assumed to be an open gRPC API) |