cookiecutter 快速搭建django项目

ubuntu18.04 使用cookiecutter搭建django项目

1. 下载cookiecutter

pip3 install cookiecutter

我的安装过程比较顺利,接下来输入cookiecutter:

需要模板,加上github的链接:cookiecutter

cookiecutter https://github.com/pydanny/cookiecutter-django.git

接下来的配置:

1:填写项目名称

2. slug,默认

3. 描述,自己填写一些描述

4.作者名字

5. 域名,,,我的默认

6.email,我的默认

7. 版本,默认

8. 5,不开源

9. 时区,亚洲上海

10. 在服务器 开发就选n,win就选y

11.  使用pycharm开发y

12. 

...

custom_bootstrap_compilation [n]: 
use_compressor [n]: y
use_celery [n]: y
use_mailhog [n]: 
use_sentry [n]: 
use_whitenoise [n]: 
use_heroku [n]: 
use_travisci [n]: 
keep_local_envs_in_vcs [y]: n
debug [n]: y

 

cookiecutter 快速搭建django项目_第1张图片

创建成功

 [SUCCESS]: Project initialized, keep up the good work!
ubuntu@VM-0-12-ubuntu:~/myproject$ ls
zanhu
ubuntu@VM-0-12-ubuntu:~/myproject$ cd zanhu
ubuntu@VM-0-12-ubuntu:~/myproject/zanhu$ tree

 

 

 

你可能感兴趣的:(python)