Skip to content

OHSU-FM/nnacoe

Repository files navigation

Project Reindeer

Code Climate

About

Project Reindeer is a portal website for LimeSurvey that allows you to control, share, monitor, filter, restrict and explore data that is collected with LimeSurvey.

Dashboard Image of Daskboard

Early Release This project is ready to share, but requires a little work to get everything started. See notes below for details.

Features

Data exploration

  • Reports: Statistics and charts related to collected data
  • Chart builder: Create custom charts and graphs out of collected data

Assignments

An interface for managing and participating in multiple surveys, with features for discussing projects and communicating between participants.

Pinnable dashboard

Save interesting pieces of data, surveys, reports and charts to a central dashboard for easy viewing at a later time.

Admin Interface

A central interface for exploring the lower lever details of the application.

LDAP

LDAP authentication is supported

Quick Start Guide

Database note: Current development uses PostgreSQL, but other database types will probably also work as long as it is also supported by LimeSurvey.

Create a development environment

Option I: Ubuntu

  1. Install ruby 1.9.3 or higher
sudo apt-get install ruby
  1. Install dependencies
sudo apt-get update
sudo apt-get install git php5 build_essential php5-ldap php5-curl php5-pgsql apache2
# Additionally add any other LimeSurvey specific dependencies you might have
  1. Clone this repository
git clone https://github.com/OHSU-FM/reindeer.git
  1. Download and install LimeSurvey

  2. Download and install Redis

  3. Configure reindeer yml files There are several yml.example files in the config directory. These files need to be copied and have the .example extension removed. Look inside of each file and make the appropriate changes for your needs.

  4. Configure reindeer database.yml Project Reindeer is a companion application to LimeSurvey and because of this it requires a shared database with limeSurvey to function. Be sure to copy the database information that was entered into LimeSurvey and use it when you are modifying the ./config/database.yml file in reindeer.

  5. Setup database

# From the base directory

# Initialize database
rake db:setup
  1. Create Admin User
# From project root directory
rails c
user = User.new
user.password = 'somepassword'
user.password_confirmation = 'somepassword'
user.username = 'admin'
user.email = 'user@example.com'
user.save!
  1. Start rails
rails s

About

Viewing portal for Oregon AHEC data collected with LimeSurvey

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published