Tag Archives: linux/unix world

How to push a particular branch to Heroku

This is just a shortcut to a command I found here: http://devcenter.heroku.com/articles/git This is my .git/config: 1234567891011121314151617[core]   repositoryformatversion = 0   filemode = true   bare = false   logallrefupdates = true   ignorecase = true [heroku]   account = personal [remote "heroku"]   url = git@heroku.personal:censo2010.git   fetch = +refs/heads/*:refs/remotes/heroku/* [remote "origin"]   [...]

Posted in developer tools, linux/unix world, programming, web programming | Also tagged , , , , , , , | Leave a comment

how to setup a Fedora server for Rails 3 (MySQL + Nginx + Unicorn)

I launched a new EC2 AMI the other day. This is what I did to get a Rails 3 production environment up and running. Install all required and optional libraries Use yum with this: 1234sudo yum install readline-devel ncurses ncurses-devel gcc gcc-c++ libxml2 libxml2-devel libxslt libxslt-devel curl-devel make zlib-devel httpd-devel apr-devel apr-util-devel lynx wget mysql [...]

Posted in linux/unix world, open source, programming, Ruby programming, web programming | Also tagged , , , , , | 1 Comment

how to get started with rails 3 on Mac OS X from scratch

how to get started with rails 3 on Mac OS X from scratch

installing rvm and ruby-1.9.2-p0

Posted in linux/unix world, open source, programming, Ruby programming, Uncategorized | Also tagged , , , , , | Leave a comment