Skip to content

Commit

Permalink
Add post gen hook to display info
Browse files Browse the repository at this point in the history
  • Loading branch information
pawamoy committed Dec 6, 2017
1 parent b000c42 commit 852d711
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions hooks/post_gen_project.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
print("""
You have succesfully created `{{ cookiecutter.repository_slug }}`
with these cookiecutter parameters:
{% for key, value in cookiecutter.items()|sort %}
{{ "{0:24}".format(key + ":") }} {{ "{0!r}".format(value).strip("u") }}
{%- endfor %}
-----------------------------------------------------------------
Now:
- Run `awesome_bot README.md` to verify the links.
- Activate your repository in your Travis account.
- Please read awesome's PR requirements before submitting a Pull Request:
https://github.com/sindresorhus/awesome/blob/master/pull_request_template.md
""")

0 comments on commit 852d711

Please sign in to comment.