Files
tldr/pages.zh/common/django-admin.md

20 lines
424 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# django-admin
> Django的管理任务实用工具。
> 更多信息:<https://docs.djangoproject.com/en/4.2/ref/django-admin/>.
- 创建一个新的Django项目
`django-admin startproject {{project_name}}`
- 为当前项目创建一个新的应用:
`django-admin startapp {{app_name}}`
- 检查当前的Django版本
`django-admin --version`
- 显示特定命令的帮助:
`django-admin help {{command}}`