datahuborg / datahub

An experimental hosted platform (GitHub-like) for organizing, managing, sharing, collaborating, and making sense of data.
https://datahub.csail.mit.edu
MIT License
210 stars 60 forks source link

Make sure secret_key.py isn't tracked. #71

Closed justinanderson closed 8 years ago

justinanderson commented 8 years ago

.gitignore for secret_key.py doesn't work unless secret_key.py isn't already being tracked, but Django complains if the file doesn't exist before it first runs. This leaves the file non-existent until the user first runs vagrant up. This means new instances that don't use vagrant up will need to create a secret_key.py file themselves.

RogerTangos commented 8 years ago

Can instructions to make the secret_key.py file go into the gitignore/sphinx docs?

justinanderson commented 8 years ago

Good point.

justinanderson commented 8 years ago

Should be better now.