OpenDevGroup / OpenDevManagement

An open source solution for managing projects with GitHub integration
GNU General Public License v3.0
0 stars 2 forks source link

OpenDevManagement

An open source solution for managing projects with GitHub integration.

Code Climate Test Coverage Build Status

Installation

This application includes a Vagrantfile to automate configuring development environments

Prerequisites

This application requires the following two application packages to be installed on the host system in order to use the preconfigured development environment.

  1. VirtualBox
  2. Vagrant

Mac OS X

  1. Clone the repo: git clone https://github.com/OpenDevGroup/OpenDevManagement.git
  2. Navigate into project directory: cd OpenDevManagement/
  3. Run Vagrant build: vagrant up

Running the vagrant up command for the first time will take quite a while. During this process, your machine will (amongst other things):

  1. Download a copy of the 64 bit Precise Pangolin Unbuntu box from Atlas - https://atlas.hashicorp.com/boxes/search
  2. Boot that image using VirtualBox
  3. Run system updates
  4. Install base development libraries
  5. Install Ruby 2.1.5 (Go make yourself a cup of coffee or two at this point)
  6. Update rubygems (the 'gem' command)
  7. Install Postgres & set up the databases (one for dev data, the other for test data)
  8. Install system gems
  9. Install application specific gems
  10. Install Puma webserver
  11. Boot the application with Foreman

After which, the application will be available at http://localhost:3005

Post initial installation, the vagrant up command will bring the project up much faster.

For more information, check the Vagrantfile in the root directory.