-
Notifications
You must be signed in to change notification settings - Fork 7
reference
henry.huang edited this page Mar 24, 2021
·
2 revisions
参考资源
- https://github.com/audreyr/cookiecutter-pypackage
- https://github.com/pydanny/cookiecutter-django
- https://github.com/golang-standards/project-layout
- https://github.com/micro/micro
- https://github.com/adobe/go-starter
- https://github.com/gatsbyjs/gatsby-starter-default
install:
multi template:
- https://cookiecutter.readthedocs.io/en/1.7.2/advanced/directories.html
- 支持一个 git 下, 存放多个
目录创建模板
.
cookiecutter https://github.com/user/repo-name.git --directory="directory1-name"
create a template:
# 创建 template 文件夹: 命名格式如下(类似)
mkdir {{cookiecutter.directory_name}}
mkdir {{cookiecutter.repo_name}}
-
cookiecutter.json
文件示例格式
{
"full_name": "Henry",
"email": "[email protected]",
"repo_name": "complexity",
"project_short_description": "Refreshingly simple static site generator.",
"release_date": "2013-07-10",
"year": "2013",
"version": "0.1.1"
}