0

所以我决定用 appfog 部署我的第一个 django 应用程序,在 appfog 中创建应用程序,下载源代码以便使用他们的项目结构,进行必要的更改和更新。一切都很顺利,直到我python manage.py collectstatic收集了所有的静态文件,但我无法更改静态文件,无法在模板中使用 css。我只是不明白为什么。在我的 settings.py

ROOT_PATH = os.path.dirname(__file__)
STATIC_ROOT = os.path.join(ROOT_PATH, 'static')
STATIC_DIR = /absolute/path/to/static

在 urls.py

url(r'^static/(?P<path>.*)$', 'django.views.static.serve', {'document_root': settings.STATIC_ROOT}),

我的项目结构是这样的,基本上是appfog的结构

-env
-.afignore
-settings.py
-templates
-static
-app1

我该如何解决?

4

1 回答 1

0

run python manage.py collectstatic什么时候会create static folder哪个copy the files inside staticfiles folder,对吧?

如果您想进行更改,请不要尝试在您的静态文件夹中进行更改。只需更改您的 staticfiles 文件夹中的文件。之后,运行 python manage.py collectstatic 以在您的静态文件夹中进行更新。

于 2013-03-28T08:22:22.080 回答