mirror of
https://github.com/foo-dogsquared/wiki.git
synced 2025-01-31 07:57:57 +00:00
b088086b06
Now, it's all under the notebook umbrella. Seems to be appropriate as it is just my notes after all. I also updated some notes from there. I didn't keep track of what it is this time. Something about more learning notes extracted from my "Learning how to learn" course notes and then some. Lack of time and hurriness just makes it difficult to track but it should be under version control already.
32 lines
1.2 KiB
Org Mode
32 lines
1.2 KiB
Org Mode
:PROPERTIES:
|
|
:ID: 08f43012-a152-48c4-8943-9fe557a39232
|
|
:END:
|
|
#+title: Cookiecutter
|
|
#+date: "2021-07-16 16:40:44 +08:00"
|
|
#+date_modified: "2021-07-20 01:59:09 +08:00"
|
|
#+language: en
|
|
#+property: header_args :eval no
|
|
|
|
|
|
A project scaffolding tool enabling to create projects instantly.
|
|
You can generate projects from your own Cookiecutter template or [[https://github.com/topics/cookiecutter-template][others' template]].
|
|
|
|
|
|
|
|
|
|
* Features
|
|
|
|
- The tool makes use of Jinja2 for templating.
|
|
- Template files and directories name.
|
|
- Hooks either with a shell or Python script.
|
|
|
|
|
|
|
|
|
|
* Ecosystem
|
|
|
|
- [[https://github.com/topics/cookiecutter-template][Cookiecutter has plenty of templates available online]]
|
|
- [[https://github.com/cruft/cruft][Cruft]] is a boilerplate manager allowing you to update templates after scaffolding, check and validate the templates, and 100% compatibility with Cookiecutter templates
|
|
- a couple of Cookiecutter templates maintained by the team includes [[https://github.com/pydanny/cookiecutter-django][cookiecutter-django]] and [[https://github.com/audreyfeldroy/cookiecutter-pypackage][cookiecutter-pypackage]];
|
|
good examples to get started presenting how complex a template can be
|