A Django app for building your own Technology Radar, inspired by ThoughtWorks.
See the documentation for more information.
Install the technology_radar
package from GitHub:
$ pip install django-technology-radar
This will also install it's dependencies.
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'
Add the following additions to your urls.py
file:
url(r'', include('technology_radar.urls')),