From 93bea49a3ee9473692596b69d8c3666da1a2c713 Mon Sep 17 00:00:00 2001 From: Luc Lagarde Date: Sat, 30 Dec 2017 23:47:08 -0600 Subject: [PATCH] Add Linux build instructions to README.md --- README.md | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 125a461..5e11d6b 100644 --- a/README.md +++ b/README.md @@ -7,5 +7,27 @@ In its current state, players can walk around the game universe and collect Biom Wiki: [GitHub](https://github.com/simon987/Much-Assembly-Required/wiki) Chat: [Slack](https://join.slack.com/t/muchassemblyrequired/shared_invite/enQtMjY3Mjc1OTUwNjEwLTkyOTIwOTA5OGY4MDVlMGI4NzM5YzlhMWJiMGY1OWE2NjUxODQ1NWQ1YTcxMTA1NGZkYzNjYzMyM2E1ODdmNzg) +# Deploying the server (Ubuntu or other Debian derivative) -_Building instructions coming soon_ +Note: You can find the frontend [here](https://github.com/simon987/Much-Assembly-Required) + + +## Linux (Ubuntu 16.04) +```bash +# Install tools +sudo apt install git maven openjdk-8-jdk + +# Obtain source files +git clone https://github.com/simon987/Much-Assembly-Required.git + +# Build +cd Much-Assembly-Required +mvn package + +# Run +cd target +java -jar server-1.2a.jar +``` + +## Windows +Coming eventually...