My Favorite Django Tips & Features. 1. Dont hardcode MEDIA_ROOT and TEMPLATE_DIRS use os.path.realpath(os.path.dirname)__file__)). hardcoding will cause problem while moving from dev-> test-> live. 2. Dont hardcode static files in ...
My Favorite Django Tips & Features. 1. Dont hardcode MEDIA_ROOT and TEMPLATE_DIRS use os.path.realpath(os.path.dirname)__file__)). hardcoding will cause problem while moving from dev-> test-> live. 2. Dont hardcode static files in ...