moorinl / django-technology-radar

A Django app for building your own Technology Radar.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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')),

About

A Django app for building your own Technology Radar.


Languages

Language:Python 88.1%Language:HTML 11.0%Language:Makefile 0.9%