From 08920491bdb910024cc6cff5025e96f6b8acdb22 Mon Sep 17 00:00:00 2001 From: Martin Nestorov Date: Wed, 3 Oct 2018 20:12:02 +0300 Subject: [PATCH] Created Installation: Arch Linux (markdown) --- Installation:-Arch-Linux.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Installation:-Arch-Linux.md diff --git a/Installation:-Arch-Linux.md b/Installation:-Arch-Linux.md new file mode 100644 index 0000000..1af969a --- /dev/null +++ b/Installation:-Arch-Linux.md @@ -0,0 +1,27 @@ +First, install needed tools + +``` bash +sudo pacman -S git maven mongodb jdk8-opendjk + +# Don't forget to start mongodb +sudo systemctl start mongodb.service +``` + +*If needed, visit [troubleshooting mongodb](https://wiki.archlinux.org/index.php/MongoDB#Troubleshooting).* + +Then you can deploy the server + +``` bash +# 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.4a.jar +``` + +Finally open a broswer on `http://localhost:4567`! \ No newline at end of file