mirror of
https://github.com/taigaio/taiga-docker.git
synced 2025-07-29 08:54:25 +02:00
Add telemetry to Taiga
This commit is contained in:
parent
a6c56b6d6e
commit
1ae321e530
11
README.md
11
README.md
@ -45,9 +45,17 @@ Is the secret key of Taiga. Should be the same as this var in `taiga-events` and
|
|||||||
|
|
||||||
Should have the url where this is served: https[://]taiga.mycompany.com
|
Should have the url where this is served: https[://]taiga.mycompany.com
|
||||||
|
|
||||||
|
#### Telemetry Settings
|
||||||
|
|
||||||
|
Telemetry anonymous data is collected in order to learn about the use of Taiga and improve the platform based on real scenarios.
|
||||||
|
|
||||||
|
##### `ENABLE_TELEMETRY`
|
||||||
|
|
||||||
|
You can opt out by setting this variable to "False". By default is "True".
|
||||||
|
|
||||||
#### Email Settings
|
#### Email Settings
|
||||||
|
|
||||||
By default, email is configured with the *console* backend, which means that the emails will be shown in the stdout.<br>
|
By default, email is configured with the *console* backend, which means that the emails will be shown in the stdout.
|
||||||
|
|
||||||
##### `ENABLE_EMAIL`
|
##### `ENABLE_EMAIL`
|
||||||
|
|
||||||
@ -96,7 +104,6 @@ Is the secret erlang cookie.
|
|||||||
|
|
||||||
This vars will be used to connect to rabbitmq.
|
This vars will be used to connect to rabbitmq.
|
||||||
|
|
||||||
|
|
||||||
### taiga-front
|
### taiga-front
|
||||||
|
|
||||||
##### `TAIGA_URL`
|
##### `TAIGA_URL`
|
||||||
|
@ -20,6 +20,8 @@ x-environment:
|
|||||||
# EMAIL_PORT: 587
|
# EMAIL_PORT: 587
|
||||||
# EMAIL_HOST_USER: "user"
|
# EMAIL_HOST_USER: "user"
|
||||||
# EMAIL_HOST_PASSWORD: "password"
|
# EMAIL_HOST_PASSWORD: "password"
|
||||||
|
# Telemetry settings
|
||||||
|
ENABLE_TELEMETRY: "True"
|
||||||
# Rabbitmq settings
|
# Rabbitmq settings
|
||||||
# should be the same as in taiga-async-rabbitmq and taiga-events-rabbitmq
|
# should be the same as in taiga-async-rabbitmq and taiga-events-rabbitmq
|
||||||
RABBITMQ_USER: taiga
|
RABBITMQ_USER: taiga
|
||||||
@ -54,6 +56,8 @@ services:
|
|||||||
- taiga-db-data:/var/lib/postgresql/data
|
- taiga-db-data:/var/lib/postgresql/data
|
||||||
networks:
|
networks:
|
||||||
- taiga
|
- taiga
|
||||||
|
ports:
|
||||||
|
- "5432:5432"
|
||||||
|
|
||||||
taiga-back:
|
taiga-back:
|
||||||
image: taigaio/taiga-back:alpha
|
image: taigaio/taiga-back:alpha
|
||||||
|
Loading…
x
Reference in New Issue
Block a user