Skip to content

A cookiecutter template to create a Django app around a model with CRUD views using django-vanilla-views, a floppyforms ModelForm and WebTest tests using model mommy.

License

Notifications You must be signed in to change notification settings

Feverup/cookiecutter-provider-template

 
 

Repository files navigation

CookieCutter Provider Template

A cookiecutter template to create a Django app for a new third party provider:
  • The main provider event model.
  • Django admin views for the model changelist and model importing.

Quickstart

  1. Install cookiecutter, and apps listed in requirements.txt for our generated app. Install them all with:
pip install -r https://raw.github.com/Feverup/cookiecutter-provider-template/master/requirements.txt
  1. Run cookiecutter using this template. Note that it will overwrite existing files without warning if you already have an app dir of the same name, so make sure your code is checked in or backed up.
cookiecutter git@github.com:Feverup/cookiecutter-provider-template.git
  1. Update urls.py to include the new app:
url(r'^things/', include('yourproject.yourapp.urls', namespace='yourapp')),

About

A cookiecutter template to create a Django app around a model with CRUD views using django-vanilla-views, a floppyforms ModelForm and WebTest tests using model mommy.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 94.4%
  • HTML 5.6%