For considering AgileVentures Future Directions
Ronin final project to implement an AgileVentures showcase
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
- Fork https://github.com/AgileVentures/WebSiteTwo on github
- create an "agileventures" folder where you keep your rails projects and cd into it
- $ git clone git@github.com:UserName/WebSiteTwo.git
- Logon to postgres using PGAdminIII and create user "" (not superuser but "can create databases"), with password
- edit config/database.yml file to amend config settings for postgres db (password, host, port)
- rem bundle install
- $ export RAILS_ENV=development
- $ export RACK_ENV=development
- $ rake db:create
- $ rake db:migrate
- $ rails server