kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.0 KiB
40 lines
1.0 KiB
8 years ago
|
### Steps to install OpenProject on Debian 7 (Wheezy)
|
||
8 years ago
|
|
||
8 years ago
|
All steps need to be run as `root`.
|
||
|
|
||
|
**1. Import the packager.io repository signing key**
|
||
|
|
||
|
Import the PGP key used to sign our packages. Since we're using the _packager.io_ platform to distribute our packages, both package source and signing key are tied to their service.
|
||
|
|
||
|
```bash
|
||
|
wget -qO - https://deb.packager.io/key | sudo apt-key add -
|
||
|
```
|
||
|
|
||
|
**2. Install apt-https suppport**
|
||
|
|
||
|
Since we only provide https package sources, you may need to install `apt-transport-https` as a preliminary step.
|
||
|
|
||
|
```bash
|
||
|
apt-get install apt-transport-https
|
||
|
```
|
||
|
|
||
|
|
||
|
**3. Add the OpenProject package source**
|
||
|
|
||
|
Create the file `/etc/apt/sources.list.d/openproject.list` with the following contents
|
||
|
|
||
|
|
||
|
```
|
||
|
deb https://deb.packager.io/gh/opf/openproject-ce wheezy stable/6
|
||
|
```
|
||
|
|
||
|
|
||
|
**4. Install the OpenProject Community Edition package**
|
||
|
|
||
|
Using the following commands, apt will check the new package source and install the package and all required dependencies.
|
||
|
|
||
|
```bash
|
||
|
apt-get update
|
||
|
apt-get install openproject
|
||
8 years ago
|
```
|