Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 1.14 KB

File metadata and controls

36 lines (28 loc) · 1.14 KB

Welcome to WebSiteTwo!

For considering AgileVentures Future Directions

Ronin final project to implement an AgileVentures showcase


Getting the app up and running

Optional (if you haven't yet added an ssh key to github)

  • Generate a public\private key on your local Linux box
       $ ssh-keygen -t rsa -b 4096 -f ~/.ssh/id_rsa_github
  • Add the key to ssh-agent on your local linux box
     $ ssh-add ~/.ssh/id_rsa_github
  • login to github
  • view profile
  • choose ssh keys
  • add new
  • copy contents of ~/.ssh/id_rsa_github.pub to dialogue box
  1. Fork https://github.com/AgileVentures/WebSiteTwo on github
  2. create an "agileventures" folder where you keep your rails projects and cd into it
  3. $ git clone git@github.com:UserName/WebSiteTwo.git
  4. Logon to postgres using PGAdminIII and create user "" (not superuser but "can create databases"), with password
  5. edit config/database.yml file to amend config settings for postgres db (password, host, port)
  6. rem bundle install
  7. $ export RAILS_ENV=development
  8. $ export RACK_ENV=development
  9. $ rake db:create
  10. $ rake db:migrate
  11. $ rails server