Re: Github Development Repo

2012-08-04 Thread Marshel Helsper
For the database you can set your git ignore to ignore your database, or store it in a separate path and use git there for that specifically. For your secret key, use the git hook pre committing to change that line, storing the key outside of your project so you don't lose it. Use the post commit

Re: Github Development Repo

2012-08-04 Thread Jonathan Baker
A quick solution would be to keep sensitive information in a local_settings.py file that you don't track with Git. On Sat, Aug 4, 2012 at 4:57 PM, Schmidtchen Schleicher < spiolli...@googlemail.com> wrote: > I want to use GIT as versioning system for my Django project and as a > matter of cushine

Github Development Repo

2012-08-04 Thread Schmidtchen Schleicher
I want to use GIT as versioning system for my Django project and as a matter of cushiness I want to host it publicly on Github. But isn't it dangerous to have the secret key and the database (I'm using sqlite during development) publicly available? What can I do instead? -- You received this m