Re: new to ruby / git / heroku : environments / best practices

2010-02-26 Thread dan
i think my mail info is safe, using the gmail smtp plugin but there are some other files that im not so sure what to do ex...site key stores hash used for user passwords, i'll be adding google maps with an api key also whats the best way to keep these files for heroku, but make then inaccessible,

Re: new to ruby / git / heroku : environments / best practices

2010-02-26 Thread Oren Teich
http://docs.heroku.com/config-vars On Fri, Feb 26, 2010 at 9:28 AM, dan mr.dan.ma...@gmail.com wrote: i think my mail info is safe, using the gmail smtp plugin but there are some other files that im not so sure what to do ex...site key stores hash used for user passwords, i'll be adding

new to ruby / git / heroku : environments / best practices

2010-02-25 Thread dan
without incessant pushing of files, which ruby environment is heroku running? dev or production? what are some of the files you typically list in git ignore? im launching a site and need to add some email info but not sure which environment to add it to or how to properly keep sensitive info on

Re: new to ruby / git / heroku : environments / best practices

2010-02-25 Thread Carl Anderson
Heroku runs in production. I'm not sure about other people, but my gitignore typically looks like this log tmp db/*.sqlite3 db/data.yml *.*~ Carl On Thu, Feb 25, 2010 at 12:18 PM, dan mr.dan.ma...@gmail.com wrote: without incessant pushing of files, which ruby environment is heroku running?

Re: new to ruby / git / heroku : environments / best practices

2010-02-25 Thread Terence Lee
For sensitive info you might want to check out jbarnette's configlet: http://github.com/jbarnette/configlet using heroku env variables. On Thu, 2010-02-25 at 12:18 -0800, dan wrote: without incessant pushing of files, which ruby environment is heroku running? dev or production? what are some