How should we use this?
I copied the hipchat folder into ~/rhodecode/venv/lib/python2.7/site-packages/rhodecode/config/rcextensions and ran the make-rcext process.
The resulting __init__.py doesn't contain the hipchat code.
Should I copy over the __init__py from the hipchat folder over the original on in ~/rhodecode/venv/lib/python2.7/site-packages/rhodecode/config/rcextensions ?
What if I have multiple extensions?
I tried to copy the __init_.py from hipchat over the original one and ran make-rcext, but this throws an error:
(venv)git@git:~/rhodecode/venv/bin$ paster make-rcext ../../data/production.ini
Traceback (most recent call last):
File "/home/git/rhodecode/venv/bin/paster", line 8, in <module>
load_entry_point('PasteScript==1.7.5', 'console_scripts', 'paster')()
File "/home/git/rhodecode/venv/local/lib/python2.7/site-packages/paste/script/command.py", line 103, in run
command = commands[command_name].load()
File "/home/git/rhodecode/venv/local/lib/python2.7/site-packages/setuptools-0.6c11-py2.7.egg/pkg_resources.py", line 1954, in load
File "/home/git/rhodecode/venv/local/lib/python2.7/site-packages/rhodecode/config/rcextensions/__init__.py", line 1, in <module>
import requests
ImportError: No module named requests
I am new to python so forgive if this is a basic question