Skip to content

lalva/Groog

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Setting up the environment on a MAC:

I am assuming you're running a fresh install of OSX Yosemite. If there are any problems, the errors are usually detailed enough to figure out what to do next or what to Google.

  1. Install Xcode CLI tools: xcode-select --install
  2. Install Homebrew: ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
  3. Run brew doctor and make sure your system is ready to brew!
  4. Install RVM: \curl -sSL https://get.rvm.io | bash -s stable
  5. You might need to restart Terminal or manually reload sources after
  6. Install Ruby using RVM: rvm install ruby
  7. Optional: Turn off document installation with gem. echo "gem: --no-document" >> ~/.gemrc
  8. Install Rails: gem install rails
  9. Install Git (might not be needed if you already have git): brew install git
  10. git config --global user.name "Your Full Name"
  11. git config --global user.email "YourEmail@Address"
  12. Install PostgreSQL (only needed for the libraries): brew install postgresql
  13. From your fork (make one if you haven't), clone the repository to your desired work directory.
  14. Install Rails project dependencies: cd ivote/rails and bundle install
  15. Finally we get to run something, run ivote server: rails s
  16. Visit http://localhost:3000, the api server is now running.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 69.6%
  • HTML 24.4%
  • CSS 3.5%
  • CoffeeScript 1.7%
  • JavaScript 0.8%