├── .gitignore ├── README.md ├── cookiecutter.json └── {{ cookiecutter.repo_name }} ├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs ├── css │ └── extra.css └── index.md ├── mkdocs.yml ├── requirements.txt ├── runtests.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── conftest.py └── models.py ├── tox.ini └── {{ cookiecutter.app_name }} └── __init__.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpadilla/cookiecutter-django-rest-framework/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpadilla/cookiecutter-django-rest-framework/HEAD/README.md -------------------------------------------------------------------------------- /cookiecutter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpadilla/cookiecutter-django-rest-framework/HEAD/cookiecutter.json -------------------------------------------------------------------------------- /{{ cookiecutter.repo_name }}/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpadilla/cookiecutter-django-rest-framework/HEAD/{{ cookiecutter.repo_name }}/.gitignore -------------------------------------------------------------------------------- /{{ cookiecutter.repo_name }}/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpadilla/cookiecutter-django-rest-framework/HEAD/{{ cookiecutter.repo_name }}/.travis.yml -------------------------------------------------------------------------------- /{{ cookiecutter.repo_name }}/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpadilla/cookiecutter-django-rest-framework/HEAD/{{ cookiecutter.repo_name }}/LICENSE -------------------------------------------------------------------------------- /{{ cookiecutter.repo_name }}/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpadilla/cookiecutter-django-rest-framework/HEAD/{{ cookiecutter.repo_name }}/MANIFEST.in -------------------------------------------------------------------------------- /{{ cookiecutter.repo_name }}/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpadilla/cookiecutter-django-rest-framework/HEAD/{{ cookiecutter.repo_name }}/README.rst -------------------------------------------------------------------------------- /{{ cookiecutter.repo_name }}/docs/css/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpadilla/cookiecutter-django-rest-framework/HEAD/{{ cookiecutter.repo_name }}/docs/css/extra.css -------------------------------------------------------------------------------- /{{ cookiecutter.repo_name }}/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpadilla/cookiecutter-django-rest-framework/HEAD/{{ cookiecutter.repo_name }}/docs/index.md -------------------------------------------------------------------------------- /{{ cookiecutter.repo_name }}/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpadilla/cookiecutter-django-rest-framework/HEAD/{{ cookiecutter.repo_name }}/mkdocs.yml -------------------------------------------------------------------------------- /{{ cookiecutter.repo_name }}/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpadilla/cookiecutter-django-rest-framework/HEAD/{{ cookiecutter.repo_name }}/requirements.txt -------------------------------------------------------------------------------- /{{ cookiecutter.repo_name }}/runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpadilla/cookiecutter-django-rest-framework/HEAD/{{ cookiecutter.repo_name }}/runtests.py -------------------------------------------------------------------------------- /{{ cookiecutter.repo_name }}/setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /{{ cookiecutter.repo_name }}/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpadilla/cookiecutter-django-rest-framework/HEAD/{{ cookiecutter.repo_name }}/setup.py -------------------------------------------------------------------------------- /{{ cookiecutter.repo_name }}/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.repo_name }}/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpadilla/cookiecutter-django-rest-framework/HEAD/{{ cookiecutter.repo_name }}/tests/conftest.py -------------------------------------------------------------------------------- /{{ cookiecutter.repo_name }}/tests/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.repo_name }}/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpadilla/cookiecutter-django-rest-framework/HEAD/{{ cookiecutter.repo_name }}/tox.ini -------------------------------------------------------------------------------- /{{ cookiecutter.repo_name }}/{{ cookiecutter.app_name }}/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpadilla/cookiecutter-django-rest-framework/HEAD/{{ cookiecutter.repo_name }}/{{ cookiecutter.app_name }}/__init__.py --------------------------------------------------------------------------------