This website requires JavaScript.
Explore
Help
Sign In
Dyomedea
/
binder
Watch
1
Star
0
Fork
You've already forked binder
0
Code
Issues
Pull Requests
Releases
Wiki
Activity
3908e12ca4
binder
/
.gitignore
9 lines
76 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Ignore more types of temporary files left around
2012-10-28 17:48:50 +00:00
#*#
Enable admin ui
2011-04-10 19:02:33 +00:00
*.db
Add buld script to create debian package for binder, trunk branch with date
2013-01-08 03:12:50 +00:00
*.deb
Enable admin ui
2011-04-10 19:02:33 +00:00
*.pyc
Add *~ emacs temp files to gitignore
2012-10-26 18:18:11 +00:00
*.conf
*~
Makes SECRET_KEY secret To quote from Djangos documentation: "The secret key must be a large random value and it must be kept secret." https://docs.djangoproject.com/en/1.7/howto/deployment/checklist/#secret-key This commit achieves that by generating a file containing a random string when running the first time and by using this string as SECRET_KEY from then on.
2015-03-24 21:43:18 +00:00
/binder/secret.txt
Change in the behavior of local_settings.py Up to now local_settings.py was used for binder specific configuration values. This commit moves these values to settings.py, removes local_settings.py from version control and adds logic to settings.py to allow settings in local_settings.py to overwrite ones defined in settings.py, enabling local_settings.py to be used as installation specific configuration file, e.g. for custom database configuration.
2015-03-29 10:16:57 +00:00
/binder/local_settings.py