[docs] Updated documentation to reflect change to the User form
[ckanext-datagovau.git] / README.rst
1 This CKAN Extension customises a CKAN instance for the hosting of data.gov.au.
2
3 It comprises:
4
rgrp 5 * A CKAN Extension "plugin" at ``ckanext/datagovau/plugin.py`` which, when
6 loaded, overrides various settings in the core ``ini``-file to provide:
7 * A path to local customisations of the core templates and available licenses database
rgrp 8 * A custom Package edit form
9 * A custom n3/rdf output format
10
11 Installation
12 ============
13
14 To install this package, from your CKAN virtualenv, run the following from your CKAN base folder (e.g. ``pyenv/``)::
15
Ian Murray 16 pip install -e git+https://github.com/okfn/ckanext-datagovau#egg=ckanext-datagovau
17
rgrp 18 Then activate it by setting ``ckan.plugins = datagovau`` in your main ``ini``-file.
19
Seb Bacon 20
21