Skip navigation.

My Scattered Techie Notes

while mastering the firebending

I've moved

Hello there!

I've moved to www.codeindsgn.com

Please update your bookmark. I'll see you there.

Thanks!

Undo that SVN rm

Use the svn revert command:

svn revert --recursive example_folder


and your life saved :smile: (can be also apply to svn add)

How to make Phusion Passenger run in development mode

, , , ...

Simply add this to your virtual host configuration file

RailsEnv development


so it may looks like this

<VirtualHost *>
ServerName example.com
DocumentRoot /home/yourname/htdocs/example.com/public
RailsEnv development
</VirtualHost>


don't forget to restart your Apache.