⚠️ This repository is deprecated: After Atlassian deprecated HipChat this repository is no longer maintained.
The Taiga plugin for HipChat integration.
In your Taiga back python virtualenv install the pip package taiga-contrib-hipchat with:
pip install taiga-contrib-hipchat
Modify in taiga-back
your settings/local.py
and include the line:
INSTALLED_APPS += ["taiga_contrib_hipchat"]
Then run the migrations to generate the new need table:
python manage.py migrate taiga_contrib_hipchat
Download in your dist/plugins/
directory of Taiga front the taiga-contrib-hipchat
compiled code (you need subversion in your system):
cd dist/
mkdir -p plugins
cd plugins
svn export "https://github.com/taigaio/taiga-contrib-hipchat/tags/$(pip show taiga-contrib-hipchat | awk '/^Version: /{print $2}')/front/dist" "hipchat"
Include in your 'dist/conf.json' in the 'contribPlugins' list the value "/plugins/hipchat/hipchat.json"
:
...
"contribPlugins": [
(...)
"/plugins/hipchat/hipchat.json"
]
...
Clone the repo and
cd taiga-contrib-hipchat/back
workon taiga
pip install -e .
Modify in taiga-back
your settings/local.py
and include the line:
INSTALLED_APPS += ["taiga_contrib_hipchat"]
Then run the migrations to generate the new need table:
python manage.py migrate taiga_contrib_hipchat
After clone the repo link dist
in taiga-front
plugins directory:
cd taiga-front/dist
mkdir -p plugins
cd plugins
ln -s ../../../taiga-contrib-hipchat/dist hipchat
Include in your 'dist/conf.json' in the 'contribPlugins' list the value "/plugins/hipchat/hipchat.json"
:
...
"contribPlugins": [
(...)
"/plugins/hipchat/hipchat.json"
]
...
In the plugin source dir taiga-contrib-hipchat/front
run
npm install
and use:
gulp
to regenerate the source and watch for changes.gulp build
to only regenerate the source.
Follow the instructions on our support page Taiga.io Support > Contrib Plugins > HipChat integration