From b59e5b013d658b1b529e67b02b2cd17d5bada2fa Mon Sep 17 00:00:00 2001 From: Ben Date: Sat, 5 Dec 2020 00:57:04 -0500 Subject: [PATCH 1/2] Add updating instructions for manual installations --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index 21aa2f0..0130270 100644 --- a/README.md +++ b/README.md @@ -103,6 +103,21 @@ yarn start ``` 4. Copy your server's IP and port into CrewLink settings. Make sure everyone in your lobby is using the same server. +### Updating + +1. Navigate to the directory containing the CrewLink server. +```sh +cd crewlink-server +``` +2. Run the update command: +```sh +git pull +``` +3. Ensure NPM packages are up-to-date. +```sh +yarn install +``` + ## Contributing From a9ea0faf006874b2456ef06a5b29093256fafa16 Mon Sep 17 00:00:00 2001 From: Ben Date: Sat, 5 Dec 2020 01:23:07 -0500 Subject: [PATCH 2/2] Add reminder to restart server after updating Good call, @neil-lobo! --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 0130270..225a96c 100644 --- a/README.md +++ b/README.md @@ -117,6 +117,7 @@ git pull ```sh yarn install ``` +4. Restart the server (if running). ## Contributing