Good morning, I would like to know how to place the add-ons menu in my taiga (this menu does not appear, it is not visible), to integrate it with Slack I have version 6.7.0 of taiga community hosted on my PC. Thank you in advance.
https://docs.taiga.io/integrations-slack.html#_configure_slack
Extra info
HTTP_HOST
http://localhost:9000/
HTTP_USER_AGENT
Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0
Hi @aescalona
Can you paste the content of the url http://localhost:9000/conf.json?
Best regards
{
âapiâ: âhttp://192.168.40.156:9000/api/v1/â,
âeventsUrlâ: âws://192.168.40.156:9000/eventsâ,
âbaseHrefâ: â/â,
âeventsMaxMissedHeartbeatsâ: 5,
âeventsHeartbeatIntervalTimeâ: 60000,
âeventsReconnectTryIntervalâ: 10000,
âdebugâ: false,
âdebugInfoâ: false,
âdefaultLanguageâ: âenâ,
âthemesâ: [âtaigaâ],
âdefaultThemeâ: âtaigaâ,
âdefaultLoginEnabledâ: true,
âpublicRegisterEnabledâ: false,
âfeedbackEnabledâ: true,
âsupportUrlâ: âhttps://community.taiga.io/â,
âprivacyPolicyUrlâ: null,
âtermsOfServiceUrlâ: null,
âmaxUploadFileSizeâ: null,
âcontribPluginsâ: ,
âgitHubClientIdâ: ââ,
âgitLabClientIdâ: ââ,
âgitLabUrlâ: ââ,
âtagManagerâ: { âaccountIdâ: null },
âtribeHostâ: null,
âenableAsanaImporterâ: false,
âenableGithubImporterâ: false,
âenableJiraImporterâ: false,
âenableTrelloImporterâ: false,
âgravatarâ: false,
ârtlLanguagesâ: [âfaâ]
}
Accept-Ranges |
bytes |
Connection |
keep-alive |
Content-Length |
961 |
Content-Type |
application/json |
Date |
Tue, 30 Jan 2024 18:53:29 GMT |
ETag |
65b7aa10-3c1 |
Last-Modified |
Mon, 29 Jan 2024 13:37:20 GMT |
Server |
nginx/1.23.4 |
Accept |
text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,/;q=0.8 |
â |
â |
Accept-Encoding |
gzip, deflate, br |
Accept-Language |
es-ES,es;q=0.8,en-US;q=0.5,en;q=0.3 |
Connection |
keep-alive |
DNT |
1 |
Host |
localhost:9000 |
Sec-Fetch-Dest |
document |
Sec-Fetch-Mode |
navigate |
Sec-Fetch-Site |
cross-site |
Sec-Fetch-User |
?1 |
Upgrade-Insecure-Requests |
1 |
User-Agent |
Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0 |
Here is what was requested, thank you very much.
As you can see, contribPlugins
is empty so the Slack plugin is not enabled. How do you setup the plugin? As you can see in 30min setup, in docker-compose.yml
:
Slack integration
Enable Slack integration in your Taiga instance. This feature is disabled by default.
Note
Be careful with the upper and lower case in these settiings. We will use âTrueâ for > the backend and âtrueâ for the frontend (this is not a typo, otherwise it wonât work).
Add to &default-back-environment
environments
ENABLE_SLACK: "True"
Add to taiga-front
service environments
ENABLE_SLACK: "true"
Then restart the docker-compose and then the new changes will take effect.
I hope this can help
2 Likes