rubymonsters/diversity_ticketing

Name: diversity_ticketing

Owner: Ruby Monsters

Description: An app to make diversifying conferences easier!

Created: 2015-07-06 17:34:30.0

Updated: 2018-05-24 15:55:03.0

Pushed: 2018-05-24 16:00:45.0

Homepage: https://diversitytickets.org

Size: 3105

Language: Ruby

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

Travis says: Build Status

This is a Ruby on Rails app made by the RubyMonstas (a RailsGirls study group based in Berlin), to make diversifying conferences easier.

Supported by the Travis Foundation.

Contributing workflow

If you want to contribute, you can look at the open issues. We are happy to answer your questions if you consider to help.

If you have other ideas to enhance the site, or if you've found a bug, feel free to open an issue!

Here?s how we suggest you go about proposing a change to this project:

  1. Fork this project to your account.
  2. Create a branch for the change you intend to make.
  3. Make your changes to your fork.
  4. Test your changes. To run the tests bundle exec rake
  5. Send a pull request from your fork?s branch to our master branch.
    • For bonus points, include screenshots in the description.

Using the web-based interface to make changes is fine too, and will help you by automatically forking the project and prompting to send a pull request.

Build setup

This following text describes how to set up your workstation to develop for diversity tickets.

  1. Check that you have the correct ruby version:
  2. open a new Terminal window
  3. ruby --version # --> ruby 2.4.3
  4. Install bundler by running gem install bundler
  5. Run bundle install to install the dependencies specified in your Gemfile
  6. Postgresql setup
  7. for OS X:
    1. in your terminal, run:
    2. createuser -s pguser
    3. psql postgres
    4. postgresql console is now opened.
      1. Enter \password pguser
      2. Enter the password pguser_password (twice)
    5. when done, quit the postgresql console with \q
  8. for Ubuntu:
    1. in your terminal, run:
    2. sudo -u postgres createuser -s pguser
    3. sudo -u postgres psql
    4. postgresql console is now opened.
      1. Enter \password pguser
      2. Enter the password pguser_password (twice)
    5. when done, quit the postgresql console with \q
  9. Update the config/database.yml
  10. add this to the default group:
    host: localhost <br>
    username: pguser <br>
    password: pguser_password <br>
    
  11. Change the names of the databases to:
    diversity_ticketing_development <br>
    diversity_ticketing_test <br>
    diversity_ticketing_production <br>
    
  12. Run rake db:create to create the database.
License

MIT.


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.