项目管理利器taiga快速安装

1、github.com/benhutchins… 拉取代码

2、更新 taiga-back,taiga-front-dist到最新稳定版

github.com/taigaio/tai…

github.com/taigaio/tai…

3、修改docker-taiga下Dockerfile

因为网络问题,注释掉:

#RUN apt-key adv \

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

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

apt-get添加无认证安装

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

4、如果要打开注册功能,需要修改配置

/docker-taiga/conf/taiga/local.py 修改 PUBLIC_REGISTER_ENABLED = True

/docker-taiga/conf/taiga/conf.json 修改 "publicRegisterEnabled": true

5、默认中文显示:

扫描二维码关注公众号,回复: 6596584 查看本文章

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

6、如果使用了中文,会出现部分按钮失效的问题,因为提交请求会发送邮件出现字符集错误,可以禁用这部分的邮件事件,不会影响整体使用

/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启动,如果修改了端口号,TAIGA_HOSTNAME 也需要带上端口号

转载于:https://juejin.im/post/5d0b77ea51882559f6301493

猜你喜欢

转载自blog.csdn.net/weixin_33860528/article/details/93178158