Taiga是极简化一个开源的Kanban工具,可以有效的基于看板对项目进行整体管理。
项目地址: https://taiga.io/
安装
推荐使用Docker安装
- docker: version >= 19.03.0+
git clone https://github.com/kaleidos-ventures/taiga-docker
cd taiga-docker
./launch-taiga
安装完成之后 创建默认管理员用户
./taiga-manage.sh createsuperuser
根据提示输入用户名(登录名)密码
默认的访问地址: http://localhost:9000
如果要修改默认的访问地址 可以修改配置文件
vi .env
#
TAIGA_SCHEME=http # http or https
TAIGA_DOMAIN=localhost:9000 # 访问地址,可以根据需求修改。如果修改 www.a.com 那么请配合nginx进行反向代理 指向。127.0.0.1:9000
SUBPATH="" #访问的子路径
# 签名变变量,请务必修改
SECRET_KEY="taiga-secret-key"
# 邮箱设置
EMAIL_BACKEND=smtp
EMAIL_HOST=smtp.host.example.com
EMAIL_PORT=587 # default SMTP port
EMAIL_HOST_USER=user # user to connect the SMTP server
EMAIL_HOST_PASSWORD=password # SMTP user's password
EMAIL_DEFAULT_FROM=changeme@example.com # default email address for the automated emails
EMAIL_USE_TLS=true # 这里请修改为true,才能正常的发邮件 。默认是True,
EMAIL_USE_SSL=false # 这里请修改为false 或者ture,才能正常的发邮件 。默认是False,
nginx 反向代理设置
server {
server_name taiga.test.com;
location /
{
proxy_pass http://127.0.0.1:9000;
proxy_set_header Host taiga.test.com;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header REMOTE-HOST $remote_addr;
add_header X-Cache $upstream_cache_status;
#Set Nginx Cache
add_header Cache-Control no-cache;
expires 12h;
}
}
修改为中文
登录之后在用户中心修改为中文