Hello.
I've inherited a Ruby on Rails application that has a problem. I'm half way through some books on Rails, but haven't seen the answer to some questions yet.
What is the best way to backup the application? Can I just
tar -cvzf app.tgz app
? I don't know yet if the app has a sqlite3 database or connects to a db server.What's the best way to move the application to another server for testing? Again, I don't know if it's sqlite3 or a db server backing it.
Thanks,
Michael
Update: Yes, I will be using version control. There isn't any right now. The question I think I was trying to get at is: how transportable is the app directory; if I want to move the entire application to another computer do I need to take anything else along with me?