Pages

Monday, June 30, 2014

Clone Project From Github

When cloning a project from github, Find the SSH, copy and paste the address e.g "git@github.com:mrseed/abcdefg.git"

In the terminal
git clone git@github.com:mrseed/abcdefg.git

To check whether this application working in local development
git log

Install bundle on the clone application project
bundle 

Create database for the application
rake:db:create:all  // clone app are not come with database, so need to create on our own

Update the database definitions to latest version
rake db:migrate // this will migrate database application within the clone application setup




No comments:

Post a Comment

If you have any comment and question, please don't hesitate to post.