django-technology-radar

A Django app for building your own Technology Radar.


License
Other
Install
pip install django-technology-radar==0.1.0

Documentation

Django Technology Radar

Build Status Coverage Status Dependency Status Documentation

A Django app for building your own Technology Radar, inspired by ThoughtWorks.

Documentation

See the documentation for more information.

Usage

Install the technology_radar package from GitHub:

$ pip install django-technology-radar

This will also install it's dependencies.

Settings

In your settings file, add the following apps to INSTALLED_APPS:

'rest_framework',
'simple_history',
'technology_radar',

Add the following entries to MIDDLEWARE_CLASSES:

'simple_history.middleware.HistoryRequestMiddleware',

Choose a renderer class (default PDFRenderer):

TECHNOLOGY_RADAR_RENDER_CLASS = 'technology_radar.renderers.PDFRenderer'

URL Configuration

Add the following additions to your urls.py file:

url(r'', include('technology_radar.urls')),