项目地址: https://taiga.io/
安装推荐使用Docker安装
docker: version >= 19.03.0+git clone https://github.com/kaleidos-ventures/taiga-dockercd taiga-docker./launch-taiga
安装完成之后 创建默认管理员用户

./taiga-manage.sh createsuperuser
根据提示输入用户名(登录名)密码
默认的访问地址: http://localhost:9000

如果要修改默认的访问地址 可以修改配置文件
vi .env# TAIGA_SCHEME=http # http or httpsTAIGA_DOMAIN=localhost:9000 # 访问地址,可以根据需求修改。如果修改 www.a.com 那么请配合nginx进行反向代理 指向。127.0.0.1:9000SUBPATH="" #访问的子路径# 签名变变量,请务必修改SECRET_KEY="taiga-secret-key" # 邮箱设置EMAIL_BACKEND=smtp EMAIL_HOST=smtp.host.example.com EMAIL_PORT=587 # default SMTP portEMAIL_HOST_USER=user # user to connect the SMTP serverEMAIL_HOST_PASSWORD=password # SMTP user's passwordEMAIL_DEFAULT_FROM=changeme@example.com # default email address for the automated emailsEMAIL_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; }}
修改为中文
登录之后在用户中心修改为中文