The project was inspired by Sandi Metz's call for programmers to aid their communities . This project, in particular, looks to lessons learned in response to emergencies that inspired the National ICS program. It has often been found that there are plentiful equipment and personnel, but not the organization to know what was available nor the ability to manage it.
The goal of Ready Responder is to offer volunteer groups a program that allows them to track their resources and personnel, especially during emergencies or multi-day events. This application might be used by volunteer firefighters, auxiliary police, Medical Reserve Corp (MRC), CERT organizations, amateur radio operators (ARES/RACES), church based relief groups, shelter managers or even science-fiction conventions.
- Web-based user interface, available from both desktop and mobile
- Tracks complete data of personnel, including attendance, responsiveness, and training
- Tracks equipment, including serial numbers, sources, grants, and service records
- Will produce QR Codes of people to allow easier addition into a cell phone
- Will produce QR code to allow people to sign up for events
- Will contact members via email, SMS and VOIP to alert them
The program is currently in production, getting live feedback.
We have a Slack channel at readyresponder.slack.com to give help if you need it.
This is a Rails project that is configured to run on Ruby 2, and on a Postgres database. So, the things you'll need to install before running ReadyResponder locally are:
- Ruby
- the
bundler
gem - Postgres version 9, the database used to store the application data
- SQLite, a dependency of the mailcatcher gem
- ImageMagick, a dependency of the rmagick gem, used to process images
For ruby, you can find a detailed list of options on the official Ruby website. The most common applications used to manage your ruby version are:
- RVM
- rbenv, with the ruby-build plugin
- chruby
The exact version of Ruby that ReadyResponder is using is specified in the .ruby-version file.
After setting up ruby on your system, install the bundler
gem with gem install bundler
.
Below you will find instructions on installing the remaining dependencies for Mac OS and Ubuntu.
Ensure you have the Homebrew package manager. Run bew update
before you install the dependencies. You can also use other package
managers, such as MacPorts, but the
following instructions assume you're using Homebrew.
Install Postgres
brew install postgres
Install SQLite:
brew install sqlite
Install ImageMagick
brew install imagemagick@6
Run apt-get update
before you install the dependencies.
Install Postgres:
apt-get install postgres libpq-dev
Install SQLite:
apt-get install sqlite3 libsqlite3-dev
Install ImageMagick
apt-get install libmagickwand-dev
Feel free to ask for help!
Then get the project code locally and set it up:
- install the dependencies (Mac, Ubuntu)
- Fork ReadyResponder.
- Clone the forked repository to your development or local machine.
cd ReadyResponder
bundle install
- set up the local database
- Ensure you have a user for the database
Enter a password and answer the prompts, you will have a user (role) named with the selected privileges. Make sure the new role can create databases
sudo -i -u postgres createuser -P --interactive <database-username> exit
- copy the example database configuration file
cp config/database.example.yml config/database.yml
- fill in the copied file with your database user information and add
an entry with
host: localhost
. Edit both thedevelopment
andtest
keys - create the databases (test and development) and apply the schema defined in
db/schema.rb
bundle exec rake db:create bundle exec rake db:schema:load`
- Ensure you have a user for the database
- seed the database with some sample data and create an admin for you to use on
the local server
You should note the output of the db:seed, as it will spit out the password at the end.
bundle exec rake db:seed
At this point you should be able to run the rails server via bundle exec rails s
, the rails console via bundle exec rails c
, and the tests via bundle exec rspec spec/
bundle exec rake db:test:prepare
One more thing to note: The testing framework will run much faster over time if you run it via Spring. When running rake enter bin/rake to execute via Spring pre-loader.
See the wiki!
We have a Code of Conduct to set clear expectations for community participation. We want your participation in ReadyResponder to be safe, fun, and respectful. We've adopted the "Contributor Covenant" model for our code of conduct, which is the same model that the Rails project itself uses. (Other projects that use a Code of Conduct of this type include RSpec, Jenkins, and RubyGems.)
Please read the Code of Conduct. By participating in this project you agree to abide by its terms.