Skip to content

Gointer/wildfish-django-starter

 
 

Repository files navigation

Wildfish Django Starter =====================

Build Status

A Django 1.9 friendly project cookiecutter template to kick start development for new projects. Includes apps and settings we use in the majority of projects, along with an integrated version of our other cookiecutter-django-crud template which will also generate a model, CRUD views and tests.

Features

  • 2 tier layout
  • Python essentials: ipython, ipdb, flake8
  • Requirements file managed using pip-tools.
  • Settings using django-configurations
  • Testing bits: django-webtest, model-mommy
  • Redis cache (via django-redis-cache)
  • Sentry's raven client, django-debug-toolbar
  • django-bootstrap3, django-model-utils
  • Django CRUD views and templates using django-vanilla-views.
  • A Django ModelForm using bootstrap3.
  • Tests for all of the views using WebTest.
  • Model Mommy generated models for the tests.

Quickstart

Ensure you have cookiecutter installed, and then:

cookiecutter git@github.com:wildfish/wildfish-django-starter.git

Then from your generated project:

npm install

pip install -r requirements.in

python manage.py makemigrations

python manage.py migrate

Requirements using pip-compile ----------

The generated project uses a requirements.in file to make it straightforward to keep pinned requirements up to date using the pip-compile command from pip-tools.

To generate a requirements.txt from your project simply use the pip-compile command.

Read more here, https://github.com/nvie/pip-tools#example-usage-for-pip-compile

About

Django 1.9 cookiecutter starter project template.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 75.3%
  • HTML 23.8%
  • Shell 0.9%