To develop OpenProject a setup similar to that for using OpenProject in production is needed. However, we can skip some parts of the installation guide, so that we can get up a development environment a little easier.
- This guide requires that you have a clean Debian 7.7 x64 installation with administrative rights.
- OpenProject will be installed with a MySQL database (the guide should work analogous with PostgreSQL).
- OpenProject will be served in a development environment
If you find any bugs or you have any recommendations for improving this tutorial, please, feel free to comment in the OpenProject forums.
Install tools needed to compile Ruby and run OpenProject:
[dev@debian]# sudo apt-get update
[dev@debian]# sudo apt-get install git curl build-essential zlib1g-dev libyaml-dev libssl-dev libmysqlclient-dev libpq-dev libsqlite3-dev memcached libffi5
During installation, you have to enter a password for the mysql root-user.
[dev@debian]# sudo apt-get install mysql-server mysql-client
As a reference, we have installed the following MySQL version:
[dev@debian]# mysql --version
mysql Ver 14.14 Distrib 5.5.40, for debian-linux-gnu (x86_64) using readline 6.2
Create the OpenProject MySQL-user and database:
[dev@debian]# mysql -u root -p
You may replace the string “openproject” with the desired username and database-name. The password “my_password” should definitely be changed.
mysql> CREATE DATABASE openproject CHARACTER SET utf8;
mysql> CREATE USER 'openproject'@'localhost' IDENTIFIED BY 'my_password';
mysql> GRANT ALL PRIVILEGES ON openproject.* TO 'openproject'@'localhost';
mysql> \q
We will install the latest 0.10.x version of Node.js via nodeenv:
[dev@debian]# sudo apt-get install python python-pip
[dev@debian]# sudo pip install nodeenv
Switch to your development directory. In this guide we develop straight in the $HOME
directory.
[user@debian]# cd ~
… and install RVM (Ruby Version Manager)
[dev@debian]# \curl -sSL https://get.rvm.io | bash -s stable
[dev@centos]# source $HOME/.rvm/scripts/rvm
[dev@debian]# export -f rvm_debug
[dev@debian]# rvm autolibs disable
[dev@debian]# rvm install 2.1.4
[dev@debian]# rvm use --default 2.1.4
[dev@debian]# gem install bundler
[dev@debian]# nodeenv nodeenv
[dev@debian]# source ./nodeenv/bin/activate
[dev@debian]# npm -g install bower
As a reference, the following Node.js and NPM versions have been installed on our system:
[dev@debian]# node --version
v0.10.32
[dev@debian]# npm --version
1.4.28
[dev@debian]# bower --version
1.3.12
[dev@debian]# git clone https://github.com/opf/openproject.git
[dev@debian]# cd openproject
[dev@debian]# bundle install
[dev@debian]# npm install
[dev@debian]# bower install
Note that we have checked out the dev
branch of the OpenProject repository. Development in OpenProject happens in the dev
branch (there is no master
branch).
So, if you want to develop a feature, create a feature branch from a current dev
branch.
Create and configure the database configuration file in config/database.yml
(relative to the openproject-directory.
[dev@debian]# cp config/database.yml.example config/database.yml
Now edit the config/database.yml
file and insert your database credentials.
It should look like this (just with your database name, username, and password):
production:
adapter: mysql2
database: openproject
host: localhost
username: openproject
password: openproject
encoding: utf8
development:
adapter: mysql2
database: openproject
host: localhost
username: openproject
password: openproject
encoding: utf8
NOTE: You should validate the database.yml
file, for example with http://www.yamllint.com/. YML-files are sensitive to whitespace — It is pretty easy to write invalid .yml files without seeing the error. Validating those files prevents you from such errors.
[dev@debian]# bundle exec rake db:create:all
[dev@debian]# bundle exec rake generate_secret_token
[dev@debian]# bundle exec rake db:migrate
[dev@debian]# bundle exec rake db:seed
The db:seed
step is optional, but recommended. It creates many users, work packages, news etc. This takes some time, but gives you useful test data.
You can start OpenProject with:
bundle exec rails server
Your OpenProject installation should be accessible on port 3000 (http). A default admin-account is created for you having the following credentials:
Username: admin
Password: admin
Please have a look at our development guidelines for tips and guides on how to start coding. We have advice on how to get your changes back into the OpenProject core as smooth as possible.
Also, take a look at the doc
directory in our sources, especially the how to run tests documentation (we like to have automated tests for every new developed feature).
The OpenProject logfile can be found here:
/home/openproject/openproject/log/development.log
If an error occurs, it should be logged there (as well as in the output to STDOUT/STDERR of the rails server process).
If you have any further questions, comments, feedback, or an idea to enhance this guide, please tell us at the appropriate community.openproject.org forum. Follow OpenProject on twitter, and follow the news to stay up to date.