15 lines
305 B
Python
15 lines
305 B
Python
|
|
print("{{cookiecutter.project_slug}}")
|
|
|
|
{% if cookiecutter.use_database %}
|
|
print("Framework will use database")
|
|
{% else %}
|
|
print("Framework will not use database")
|
|
{% endif %}
|
|
|
|
{% if cookiecutter.use_cache %}
|
|
print("Framework will use cache")
|
|
{% else %}
|
|
print("Framework will not use cache")
|
|
{% endif %}
|