我是Django和Heroku的新手。我的安装在本地工作正常但当它推到Heroku我无法在我的网站中看到css,js或图像。
这是我的网址模式:
urlpatterns = patterns('',
# Examples:
# url(r'^$', 'blog.views.home', name='home'),
# url(r'^blog/', include('blog.foo.urls')),
# Uncomment the admin/doc line below to enable admin documentation:
url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
# Uncomment the next line to enable the admin:
url(r'^admin/', include(admin.site.urls)),
url(r'^comments/', include('django.contrib.comments.urls')),
url(r'^blog/', include('zinnia.urls')),
url(r'^', include('cms.urls')),
)
if settings.DEBUG:
urlpatterns = patterns('',
(r'^' + settings.MEDIA_URL.lstrip('/'), include('appmedia.urls')),
) + urlpatterns
这是我的settings.py
STATIC_ROOT = os.path.join(PROJECT_PATH, "static")
# URL prefix for static files.
# Example: "http://media.lawrence.com/static/"
STATIC_URL = '/static/'
# Additional locations of static files
STATICFILES_DIRS = (
# Put strings here, like "/home/html/static" or "C:/www/django/static".
# Always use forward slashes, even on Windows.
# Don't forget to use absolute paths, not relative paths.
)
请让我知道我哪里出错了。提前谢谢。
干杯 小号
答案 0 :(得分:2)
要在Heroku上提供静态文件,您将需要使用其他应用程序,例如whitenoise。我遵循了这些步骤,并且能够在Heroku上提供图像。
此链接是主要指南: https://github.com/codingforentrepreneurs/Guides/blob/master/all/Heroku_Django_Deployment_Guide.md
这些将是参考(我也建议您仔细阅读这些参考):
1)http://whitenoise.evans.io/en/stable/django.html
2)https://docs.djangoproject.com/en/3.0/howto/static-files/
3)https://docs.djangoproject.com/en/3.0/ref/templates/builtins/#std:templatetag-static
我遇到了您遇到的相同问题。遵循指南和参考中的步骤对我来说效果很好。
答案 1 :(得分:1)
Heroku的DEBUG
设置是否设为True
?如果不是,则不会包含appmedia.urls
。
在相关的说明中,django-appmedia
不是处理Django中静态资产的最佳方式 - 从Django 1.3开始,有一个名为staticfiles
的贡献应用程序(参见:https://docs.djangoproject.com/en/1.4/ref/contrib/staticfiles/ ),Heroku希望你能使用那个应用程序。
此外,django-appmedia
似乎希望资源位于每个应用的/media/
目录中,而staticfiles
则希望资产位于每个应用的/static/
文件夹中。
您是否查看了https://devcenter.heroku.com/articles/django-assets上的Django和静态资产的Heroku文档?