What is a good .gitignore to use with Rails on Heroku?
*.log
*.sqlite3
what else?
|
What is a good .gitignore to use with Rails on Heroku?
what else? |
|||
|
|
|
This is pretty similar to: Rails: exclude anything from version control? Here is my answer from that. DHH just posted on Twitter that there will be a default .gitignore in Rails 3, which includes:
This is usually what I exclude. Some people also like to exclude the database.yml file if it's going on a public repo and you don't want to expose your database passwords. |
||||
|
|
|
|
|||||
|
|
Keep in mind that Heroku's slug compiler has a very similar feature using a file named So you can continue working as usual (ie: storing PSD files, spreadsheets and other common files) but remove them at runtime on Heroku to lower the slug's size (< 20MB sounds good). |
|||
|
|
There is a project on Github dedicated to storing accurate gitignore files for different languages, editors, etc. While the project does not currently have an entry specific to Heroku, you might still find it useful to review. The project is here and the Rails .gitignore is here. FYI, I first found out about this project from this Stack Overflow question. |
|||
|
|