mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
74d692231e
This alters the guide into two guides for Ubuntu / OS X. [ci skip]
1.4 KiB
1.4 KiB
Quick start for developers
Detailed installation instructions for different platforms are located on the OpenProject website.
You can find information on configuring OpenProject in config/CONFIGURATION.md.
Fast install (Docker version)
Prerequisites
Building and running
-
Build the image (this will take some time)
docker-compose build -
Start and setup the database
docker-compose up -d db cp config/database.docker.yml config/database.yml docker-compose run web rake db:create db:migrate db:seed -
Start the other processes
docker-compose up
Assets should be automatically recompiled anytime you make a change, and your ruby code should also be reloaded when you change a file locally.
You can run arbitrary commands in the context of the application by using
docker-compose run. For instance:
docker-compose run web rake db:migrate
docker-compose run web rails c
...
Manual development environment
Please see the following guides for detailed instructions on how to get started developing for OpenProject.