This is my cookiecutter.json
file:
{
"day": "1",
"directory_name": "day-{{ cookiecutter.day }}"
}
Now I only want to be prompted for the day
, but not for the directory_name
which is derived from it. How do I get that to happen?
The documentation for no_input
is less than helpful.