Hi all,
I’ve been developing with Rails for about two weeks now. Just met a
deadline where we already have users, comments, and some other cool app
logic up on the site. This framework is a dream next to Struts.
The issue is, I’ve been doing things quick and dirty, but because if I
expect the site to become successful I want everything in its proper
place and done the right way so that bug fixes and enhancements become
quick and easy.
Let me tell you what I’m using/doing right now to make this work:
- Using Aptana IDE on my local windows machine for all bug
fixes/enhancements - Once I’m done, I copy the folder to an “Archive” folder so that I can
recover previous code versions. - Uploading the “app” “db” “routes.rb” and “public” folders via FTP to
my server - Logging into my server using Putty to run any db:migrate’s
- Logging into my CPanel and restarting the server.
I know this method has to seem ridiculous to some of you. I want to
make it better. This is what I THINK I need in order to get organized
in a professional way:
- A Subversion repository that either works with Aptana or something
like TortoiseSVN. - A Build-and-Deploy application to push my code out to the server from
subversion with the push of a single button. - Some sort of program to restart my server.
I’m just getting started here. I’m also missing an error page that
emails me when the site is down or it catches an exception.
Any suggestion?
Thanks!