用于生产环境的 collectstatic
收集用于部署的静态文件
用于生产环境的 collectstatic 是 CoddyKit 上的免费 Django Academy 课时。 这是第 2 节课,共 4 节。 你可以在下方免费阅读本课时的完整内容 — 然后在浏览器中使用内置代码编辑器和全天候 AI 导师进行实践。 这是 Django Academy 学习路径的一部分,你的进度在网页和 CoddyKit 应用中同步。 Django Academy 课程共包含 4 节课。
本课时的部分内容尚未翻译,以英文显示。
Dev vs Production
In development Django finds and serves static files for you. In production that auto-serving is off, so you must gather assets into one place first.
Meet collectstatic
The collectstatic command copies every static file from every app into a single output folder, ready for a web server to serve fast.
python manage.py collectstaticThe STATIC_ROOT Target
collectstatic needs a destination. The STATIC_ROOT setting points to the single folder where all collected files will be written.
STATIC_ROOT = BASE_DIR / 'staticfiles'Keep Roots Separate
Never set STATIC_ROOT to a folder you edit by hand. It is a generated output directory, rebuilt on every collectstatic run.
What It Gathers
collectstatic pulls from each app's static folder and from STATICFILES_DIRS, merging them all into STATIC_ROOT in one pass.
Skip the Prompt
By default it asks before overwriting. In a deploy script add --noinput so it runs unattended without waiting for you.
python manage.py collectstatic --noinputWhen to Run It
Run collectstatic on every deploy, after pulling new code. New or changed CSS and JS only reach users once they are collected.
Cache Busting
The ManifestStaticFilesStorage backend adds a content hash to each filename, so browsers always fetch the newest version after a deploy.
STATICFILES_STORAGE = (
'django.contrib.staticfiles.storage'
'.ManifestStaticFilesStorage')Who Serves Them
Django itself does not serve STATIC_ROOT in production. A web server like Nginx or a tool like WhiteNoise delivers those files instead.
Ignore Build Junk
Add --ignore patterns to skip files you do not want copied, like source maps or scratch files left in a static folder.
python manage.py collectstatic --ignore=*.scssGit and STATIC_ROOT
Since STATIC_ROOT is generated, add it to .gitignore. You commit your source assets, not the collected copies.
Quick Check
Let us confirm the role of collectstatic.
Recap
You saw that production needs collectstatic to merge assets into STATIC_ROOT, that you run it each deploy, and that a web server serves the result. 🚀
常见问题解答
「用于生产环境的 collectstatic」课时是免费的吗?
是的 — 「用于生产环境的 collectstatic」的完整文本可在网页上免费阅读。要进行交互式练习(内置代码编辑器和全天候 AI 导师)并解锁 Django Academy 课程的其余内容,请升级到 CoddyKit PRO。 Django Academy 课程共包含 4 节课。
「用于生产环境的 collectstatic」这节课中我会学到什么?
收集用于部署的静态文件 你通过在浏览器中直接运行的动手代码来练习 Django Academy,全天候 AI 导师会在你学习这节课的过程中回答你的问题。
学习 Django Academy 需要有经验吗?
无需任何先前经验。CoddyKit 上的 Django Academy 课程适合初学者到高级学习者,你可以从这里开始或从头开始,按照自己的节奏学习。 这是第 2 节课,共 4 节。
「用于生产环境的 collectstatic」课时需要多长时间?
大多数 CoddyKit 课程大约需要 5–10 分钟。每节课都很精短且互动,所以你能稳步进步,并在网页和应用中从离开的地方继续。
我能在这节 Django Academy 课中编写并运行代码吗?
能。每节 Django Academy 课都包含内置代码编辑器,你可以在浏览器中直接编写并运行真实代码,并获得即时 AI 反馈 — 无需本地设置。
此课程中的所有课时
- STATICFILES 与 static 标签
- 用于生产环境的 collectstatic
- MEDIA_ROOT 与文件上传
- ImageField 与上传内容提供