Reputation: 9820
I would like to backup my rails app usig a private git repo. I've decided to use Dropbox but I've already deployed to heroku, setup DNS for a custom domain name without backing up and would hate for something to go wrong by transferring my project.
Does anyone have experience with this or knows if something will go wrong? Should I reconfigure any files before transferring to a private dropbox folder?
Upvotes: 1
Views: 635
Reputation: 1985
In short - don't reconfigure or setup anything - have fun of some coding instead :) If you just want your repo to stay safely in the "cloud" then:
IMHO it is:
Upvotes: 0
Reputation: 129654
bitbucket now has private git repos. Unfuddle had them for a while too. These are all free, BTW.
Upvotes: 1
Reputation: 2488
Heroku's addons (i.e. custom domain) configurations are located on their server, not on your computer. Typically configs appear in ENV variables. Type heroku config
to see what you have.
So yes, you are free to copy your code anywhere you like, and be sure to copy your dotfiles as well.
Personally, I use github for my code backups.
Upvotes: 3