Created
March 18, 2019 18:54
-
-
Save beaulac/ce449de41dbf7312a748d776f8edf460 to your computer and use it in GitHub Desktop.
Openproject Setup on Ubuntu 18.04
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# SAFEMODE | |
set -euxo pipefail; | |
## | |
# Instructions from: https://www.openproject.org/download-and-installation/ | |
## | |
# 1. Import the packager.io repository signing key | |
wget -qO- https://dl.packager.io/srv/opf/openproject-ce/key | sudo apt-key add - | |
# 2. Ensure that apt-transport-https is installed | |
sudo apt update && sudo apt install apt-transport-https; | |
# 3. Ensure that universe package source is added | |
sudo add-apt-repository universe; | |
# 4. Add the OpenProject package source | |
sudo wget -O /etc/apt/sources.list.d/openproject-ce.list \ | |
https://dl.packager.io/srv/opf/openproject-ce/stable/8/installer/ubuntu/18.04.repo; | |
# 5. Install the OpenProject Community Edition package | |
sudo apt update && sudo apt install -y openproject; | |
### Configuration: | |
sudo openproject configure; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment