Skip to content
This repository has been archived by the owner on Jan 22, 2021. It is now read-only.

kaleidos-ventures/taiga-contrib-hipchat

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

99 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

⚠️ This repository is deprecated: After Atlassian deprecated HipChat this repository is no longer maintained.

Taiga contrib HipChat

The Taiga plugin for HipChat integration.

Installation

Production env

Taiga Back

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

Taiga Front

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"
    ]
...

Dev env

Taiga Back

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

Taiga Front

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.

How to use

Follow the instructions on our support page Taiga.io Support > Contrib Plugins > HipChat integration