From db78d35fba6c1f817f0448d36b2d5330da73ae74 Mon Sep 17 00:00:00 2001 From: Liza Carvelli Date: Fri, 10 Feb 2023 00:02:05 +0100 Subject: [PATCH] Move server installation README --- README.md | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/README.md b/README.md index 7dca07e..3c53090 100644 --- a/README.md +++ b/README.md @@ -9,18 +9,3 @@ To install this plugin from my plugin repository, please check the Additionally, you **need to install Splatoon**, which is used to render the visible overlays. Please check [Splatoon's Installation Instructions](https://github.com/NightmareXIV/MyDalamudPlugins#installation). - -## Server Installation - -To run your own server, compile this plugin in DEBUG mode, load it as a dev plugin and configure the server as follows: - -```sh -# create the directory for the sqlite db & some keys -mkdir data - -# generate a random key (don't need to use openssl, any other base64 string is fine) -openssl rand -base64 48 > data/jwt.key - -# start the server -docker run -it --rm -v "$(pwd)/data:/data" -p 127.0.0.1:5415:5415 ghcr.io/carvelli/palace-pal -```