Skip to content
This repository has been archived by the owner on Jul 27, 2024. It is now read-only.

NewtCobell/safehaven_portal

 
 

Repository files navigation

Safe Haven Secure Portal

This application handles interaction between Shelters, Advocates, Clients, and Safe Haven volunteers.

Setup

This is a pretty straightforward Rails application using MySQL for the database.

Install Ruby and Rails

Your setup may vary, but we recommend using rbenv or RVM to version your ruby environments. If you're on OS X, you can use Homebrew to help make things easier. If you're feeling adventurous, RailsInstaller may get you up and running on Windows. Please be aware that development on Windows will be different, and may require advanced knowledge when problems are encountered.

Install MySQL

Checkout the MySQL Installation Guides for getting MySQL up and running on your machine.

Once that's done, be sure to add the safehaven user

mysql --user-root mysql
mysql> CREATE USER 'safehaven'@'localhost';
mysql> GRANT ALL PRIVELGES ON *.* TO 'safehaven'@'localhost';

Clone the repo

git clone [email protected]:safehavennetwork/safehaven_portal.git

Install Gems

bundle install

Create and setup your database

bundle exec rake db:create
bundle exec rake db:migrate
bundle exec rake db:seed

Spin up the app!

bundle exec rails s

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 52.6%
  • HTML 40.7%
  • CSS 5.9%
  • Other 0.8%