Taiga

From Organic Design wiki
Revision as of 03:12, 14 April 2021 by Saul (talk | contribs) (Undo revision 128633 by Saul (talk))

Install

The documentation is fairly good at describing what to do but here is a quick set guide.

First check you have git, docker and docker-compose installed at the versions it recommends.

git clone https://github.com/taigaio/taiga-docker
cd taia-docker
git checkout stable

Replace every instance of these with passwords in docker-compose.yml and docker-compose-inits.yml:

  • POSTGRES_PASSWORD
  • TAIGA_SECRET_KEY
  • RABBITMQ_PASS

Edit these values to match your setup:

  • TAIGA_SITES_SCHEME: http
  • TAIGA_SITES_DOMAIN: example.com
  • TAIGA_URL: "http://example.com"
  • TAIGA_WEBSOCKETS_URL: "ws://example.com"

Then run:

./launch-taiga.sh # Or ./launch-all.sh if you want penpot too
# Wait a couple of minutes AFTER the command has FINISHED
./taiga-manage.sh createsuperuser
# If this command has errors and fails and says something about migrating either wait longer or run:
./taiga-manage.sh migrate

If you need to change the Taiga configuration just run the launch-taiga.sh/launch-all.sh again.


Make sure you set up the reverse proxy exactly as the documentation says just don't forget to add a listen line:

listen 80;

https

Https can be a bit tricky to setup at first but just make sure to make all of these listed changes and it should work:

First ensure the webserver is listening for https or port 443 - do not change the proxy target!

Then in docker-compose.yml make the following edits:

  • TAIGA_SITES_SCHEME: "https"
  • TAIGA_URL: "https://example.com"
  • TAIGA_WEBSOCKETS_URL: "wss://taiga.organicdesign.fund"

There is no need to change the port at the bottom of the file.