Project management tool taiga quick installation

. 1, github.com/benhutchins... pulling Code

2, update taiga-back, taiga-front-dist to the latest stable version

github.com/taigaio/tai…

github.com/taigaio/tai…

3, the modified docker-taiga Dockerfile

Because of network problems, commented:

#RUN apt-key adv \

#  --keyserver hkp://pgp.mit.edu:80 \

#  --recv-keys 573BFD6B3D8FBC641079A6ABABF5BD827BD9BF62
复制代码

apt-get install add-free certification

apt-get install -y --no-install-recommends  --allow-unauthenticated
复制代码

4, if you want to open the registration function, you need to modify the configuration

/docker-taiga/conf/taiga/local.py modification PUBLIC_REGISTER_ENABLED = True

/docker-taiga/conf/taiga/conf.json modification "publicRegisterEnabled": true

5, the default Chinese display:

/docker-taiga/conf/taiga/conf.json modification "defaultLanguage": "zh-hans"

6, if the Chinese, part of the problem button failure occurs because the character set to submit a request to send error messages to appear, you can disable this part of the event e-mail, it will not affect the overall use

/taiga-back/taiga/projects/services/invitations.py #email.send()

/taiga-back/taiga/projects/notifications/services.py #email.send(user.email, context, headers=headers)

7, docker-compose started, if the modified port number, TAIGA_HOSTNAME need to bring a port number

Reproduced in: https: //juejin.im/post/5d0b77ea51882559f6301493

Guess you like

Origin blog.csdn.net/weixin_33860528/article/details/93178158