我試圖在webfaction部署我的Django應用程序,但在設置中TEMPLATE_DIRS
的路徑似乎不正確。TEMPLATE_DIRS位置不正確
我的項目是位於下webapps/django/edmhunters
我的settings.py文件正在webapps/django/edmhunters/edmhunters
我的模板文件夾是在webapps/django/edmhunters/templates
在我的settings.py文件,這是我在做什麼
SETTINGS_PATH = os.path.normpath(os.path.dirname(__file__))
TEMPLATE_DIRS = (
os.path.join(SETTINGS_PATH, 'templates'),
)
但我仍然得到TemplateDoesNotExist錯誤。什麼是正確的道路?