The *taiga* role installs the three components of Taiga: * taiga-back * taiga-events * taiga-front *taiga-back* is a Python application. Its dependencies are installed via `pip` in the *taiga* user's site-packages, and the application itself is installed by unpacking the archive. *taiga-events* is a Node.js application. Its dependencies are installed by `npm`, and is itself installed by unpacking the archive. Finally, *taiga-front* is a single-page browser application that is installed by unpacking the archive, and served by Apache. Taiga requires PostgreSQL and RabbitMQ.
14 lines
283 B
Desktop File
14 lines
283 B
Desktop File
# vim: set ft=systemd :
|
|
[Unit]
|
|
Description=Taiga Events Server
|
|
|
|
[Service]
|
|
Type=simple
|
|
WorkingDirectory=/usr/local/lib/taiga/taiga-events
|
|
ExecStart=/usr/local/lib/taiga/taiga-events/node_modules/coffeescript/bin/coffee \
|
|
index.coffee
|
|
User=taiga
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|