为了提高工作效率,现在很多公司多多少少都会使用到一些在线的协作工具辅助办公,不管是在线的文档协作或者在线的项目管理,这些工具都切实的提高了团队的工作效率。
WookTeam是一款轻量级的开源在线团队协作工具,提供各类文档协作工具、在线思维导图、在线流程图、项目管理、任务分发、即时IM,知识库管理等工具。
tips:wookteam 全部开源
基于 Spring Boot + MyBatis Plus + Vue & Element 实现的后台管理系统 + 用户小程序,支持 RBAC 动态权限、多租户、数据权限、工作流、三方登录、支付、短信、商城等功能
- 项目地址:https://github.com/YunaiV/ruoyi-vue-pro
- 视频教程:https://doc.iocoder.cn/video/
> 基于 Spring Cloud Alibaba + Gateway + Nacos + RocketMQ + Vue & Element 实现的后台管理系统 + 用户小程序,支持 RBAC 动态权限、多租户、数据权限、工作流、三方登录、支付、短信、商城等功能
>
> * 项目地址:
> * 视频教程:
# 使用ssh
git clone [email protected]:aipaw/wookteam.git
# 或者你也可以使用https
git clone https://gitee.com/aipaw/wookteam.git
# 进入目录
cd wookteam
# 拷贝 .env
cp .env.example .env
数据库等信息
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=wookteam
DB_USERNAME=root
DB_PASSWORD=123456
......
LARAVELS_LISTEN_IP=127.0.0.1
LARAVELS_LISTEN_PORT=5200
git checkout master # 如果使用dev分支进行本地开发
git pull origin master # 如果使用dev分支进行本地开发
composer install
php artisan key:generate
php artisan migrate --seed
请确认您的环境以及安装Swoole。
php bin/laravels start
建议通过Supervisord
监管主进程,前提是不能加-d选项并且设置swoole.daemonize
为false。
[program:wookteam-test]
directory=/wwwroot/wookteam.com
command=/usr/local/bin/php bin/laravels start -i
numprocs=1
autostart=true
autorestart=true
startretries=3
user=www
redirect_stderr=true
stdout_logfile=/var/log/supervisor/%(program_name)s.log
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
upstream swoole {
# Connect IP:Port
server 127.0.0.1:5200 weight=5 max_fails=3 fail_timeout=30s;
keepalive 16;
}
server {
listen 80;
# Don't forget to bind the host
server_name wookteam.com;
root /wwwroot/wookteam.com/public;
autoindex off;
index index.html index.htm index.php;
charset utf-8;
location / {
try_files $uri @laravels;
}
location =/ws {
proxy_http_version 1.1;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Real-PORT $remote_port;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header Scheme $scheme;
proxy_set_header Server-Protocol $server_protocol;
proxy_set_header Server-Name $server_name;
proxy_set_header Server-Addr $server_addr;
proxy_set_header Server-Port $server_port;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
# "swoole" is the upstream
proxy_pass http://swoole;
}
location @laravels {
proxy_http_version 1.1;
proxy_set_header Connection "";
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Real-PORT $remote_port;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header Scheme $scheme;
proxy_set_header Server-Protocol $server_protocol;
proxy_set_header Server-Name $server_name;
proxy_set_header Server-Addr $server_addr;
proxy_set_header Server-Port $server_port;
# "swoole" is the upstream
proxy_pass http://swoole;
}
}
1. 待办四象限: 突出事情优先级,帮助员工合理安排时间,提高工作效率
2. 在线流程图: 在线流程图工具,使用方便
3. 在线思维导图: 梳理思路,优化工作流程
4. 项目管理: 自定义项目看板,可视化任务安排
5. 在线知识库: 在线流程图,在线文档,以及可视化的目录编排,文档管理无忧
6. 任务甘特图: 可视化任务时间规划,直观方便
7. 即时聊天: 团队内部沟通,项目动态实时了解
https://gitee.com/aipaw/wookteam