49 lines
887 B
Markdown
49 lines
887 B
Markdown
Taiga events
|
|
============
|
|
|
|
[](https://github.com/kaleidos "Kaleidos Project")
|
|
[](https://tree.taiga.io/project/taiga/ "Managed with Taiga.io")
|
|
|
|
The Taiga websocket server.
|
|
|
|
Installation
|
|
------------
|
|
|
|
> *NOTE:* You should use node >= 6.0
|
|
|
|
Install the RabbitMQ service.
|
|
|
|
```bash
|
|
apt-get install rabbitmq-server
|
|
```
|
|
|
|
Install the javascript dependencies.
|
|
|
|
```bash
|
|
npm install
|
|
```
|
|
|
|
Install globally the coffeescript interpreter.
|
|
|
|
```bash
|
|
sudo npm install -g coffee-script
|
|
```
|
|
|
|
Copy and edit the config.json file.
|
|
|
|
```bash
|
|
cp config.example.json config.json
|
|
```
|
|
|
|
Then run the taiga events service
|
|
|
|
```bash
|
|
coffee index.coffee
|
|
```
|
|
|
|
You can specify you own config path
|
|
|
|
```bash
|
|
coffee index.coffee --config /path/to/config.json
|
|
```
|