forked from cookiecutter/cookiecutter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request cookiecutter#1683 from cookiecutter/check-manifest
Check manifest: pre-commit, fixes, cleaning
- Loading branch information
Showing
5 changed files
with
39 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,19 @@ | ||
include AUTHORS.md | ||
include CODE_OF_CONDUCT.md | ||
include CONTRIBUTING.md | ||
include HISTORY.md | ||
include LICENSE | ||
include README.md | ||
|
||
exclude Makefile | ||
exclude __main__.py | ||
exclude .* | ||
exclude codecov.yml | ||
exclude test_requirements.txt | ||
exclude tox.ini | ||
|
||
recursive-include tests * | ||
recursive-exclude * __pycache__ | ||
recursive-exclude * *.py[co] | ||
|
||
recursive-include docs *.rst conf.py Makefile make.bat | ||
recursive-exclude docs * | ||
recursive-exclude logo * |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Case Studies | ||
|
||
This showcase is where organizations can describe how they are using Cookiecutter. | ||
|
||
## [BeeWare](https://beeware.org/) | ||
|
||
Building Python tools for platforms like mobile phones and set top boxes requires a lot of boilerplate code just to get the project running. Cookiecutter has enabled us to very quickly stub out a starter project in which running Python code can be placed, and makes maintaining those templates very easy. With Cookiecutter we've been able to deliver support [Android devices](https://github.com/beeware/Python-Android-template), [iOS devices](https://github.com/beeware/Python-iOS-template), tvOS boxes, and we're planning to add native support for iOS and Windows devices in the future. | ||
|
||
[BeeWare](https://beeware.org/) is an organization building open source libraries for Python support on all platforms. | ||
|
||
## [ChrisDev](https://chrisdev.com/) | ||
|
||
Anytime we start a new project we begin with a [Cookiecutter template that generates a Django/Wagtail project](https://github.com/chrisdev/wagtail-cookiecutter-foundation) Our developers like it for maintainability and our designers enjoy being able to spin up new sites using our tool chain very quickly. Cookiecutter is very useful for because it supports both Mac OSX and Windows users. | ||
|
||
[ChrisDev](https://chrisdev.com/) is a Trinidad-based consulting agency. | ||
|
||
## [OpenStack](https://www.openstack.org/) | ||
|
||
OpenStack uses several Cookiecutter templates to generate: | ||
|
||
* [Openstack compliant puppet-modules](https://github.com/openstack/puppet-openstack-cookiecutter) | ||
* [Install guides](https://github.com/openstack/installguide-cookiecutter) | ||
* [New tempest plugins](https://github.com/openstack/tempest-plugin-cookiecutter) | ||
|
||
[OpenStack](https://www.openstack.org/) is open source software for creating private and public clouds. |