官方链接:https://docs.djangoproject.com/en/2.2/ref/django-admin/
1、指定路径:
django-admin startproject myproject /Users/jezdez/Code/myproject_repo
django-admin startapp myapp /Users/jezdez/Code/myapp
myproject/myapp 自定义的项目名称和app名称
/Users/jezdez/Code/myproject_repo指定的项目地址,可自定义
/Users/jezdez/Code/myapp指定的app地址,可自定义
2、自定义模板
--template TEMPLATE
Specifies a directory, file path, or URL of a custom project template.
django-admin startapp --template =/Users/jezdez/Code/my_app_template myapp
使用项目模板应该类似。
3 提供一个自己写的Paas django模板:
地址:https://github.com/zhu733756/django_template
用法:下载git到本地,例如路径为E:\django_template
在项目路径下运行
1 django-admin startproject --template=E:\django_template\project_template CoreCrawlWatcher
2 cd CoreCrawlWatcher
3 django-admin startproject --template=E:\django_template\app_template server
网友评论