Merge pull request #174 from Anarcroth/add-arch-install-instructions

Added Arch Linux installation instructions in README.md
This commit is contained in:
Simon Fortier 2018-10-03 21:47:27 -04:00 committed by GitHub
commit 40e7899cf6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,11 +9,28 @@ Chat: [Slack](https://join.slack.com/t/muchassemblyrequired/shared_invite/enQtMj
# Deploying the server # Deploying the server
## Linux (Ubuntu 16.04) ## Linux
```bash
# Install tools
sudo apt install git maven openjdk-8-jdk mongodb
**Installing tools**
On Ubuntu 16.04:
```bash
sudo apt install git maven openjdk-8-jdk mongodb
```
On Arch:
``` 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).*
**Deploying server**
``` bash
# Obtain source files # Obtain source files
git clone https://github.com/simon987/Much-Assembly-Required.git git clone https://github.com/simon987/Much-Assembly-Required.git