├── .env ├── .github └── workflows │ ├── docker.yml │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md ├── README.zh-CN.md ├── apis ├── demo.http.json ├── select.http.json └── user.http.json ├── app.json ├── docs └── images │ └── intro.jpg ├── flows ├── chart │ ├── fields.flow.json │ ├── industries.flow.json │ ├── project.flow.json │ ├── task.flow.json │ └── trail.flow.json ├── current │ └── user.flow.json ├── demo │ ├── admin.flow.json │ ├── fake.data.js │ ├── fake.flow.json │ └── user.flow.json ├── init │ ├── menu.flow.json │ └── menu.items.js ├── login │ ├── password.flow.json │ └── token.flow.json └── select │ ├── channel.flow.json │ ├── customer.flow.json │ ├── manager.flow.json │ ├── project.flow.json │ └── user.flow.json ├── init.sh ├── kanban └── index.kan.json ├── libs ├── action.json ├── channel.json ├── column.json ├── customer.json └── filter.json ├── models ├── channel.mod.json ├── contract.mod.json ├── customer.mod.json ├── project.mod.json ├── task.mod.json └── user.mod.json ├── online-sv.env ├── scripts ├── time.js └── tree.js ├── supervisor └── demo-crm.conf ├── tables ├── admin.tab.json ├── channel.tab.json ├── contract.tab.json ├── customer │ ├── db.tab.json │ └── trail.tab.json ├── project │ ├── db.tab.json │ ├── my.tab.json │ └── top.tab.json └── task │ ├── db.tab.json │ └── my.tab.json ├── traefix └── demo-crm.toml ├── ui ├── feishu │ └── authback.html └── index.html └── workflows └── assign.wflow.json /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/.env -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | data 2 | 3 | private.* 4 | .DS_Store 5 | db/ 6 | logs/ 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/README.zh-CN.md -------------------------------------------------------------------------------- /apis/demo.http.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/apis/demo.http.json -------------------------------------------------------------------------------- /apis/select.http.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/apis/select.http.json -------------------------------------------------------------------------------- /apis/user.http.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/apis/user.http.json -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/app.json -------------------------------------------------------------------------------- /docs/images/intro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/docs/images/intro.jpg -------------------------------------------------------------------------------- /flows/chart/fields.flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/flows/chart/fields.flow.json -------------------------------------------------------------------------------- /flows/chart/industries.flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/flows/chart/industries.flow.json -------------------------------------------------------------------------------- /flows/chart/project.flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/flows/chart/project.flow.json -------------------------------------------------------------------------------- /flows/chart/task.flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/flows/chart/task.flow.json -------------------------------------------------------------------------------- /flows/chart/trail.flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/flows/chart/trail.flow.json -------------------------------------------------------------------------------- /flows/current/user.flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/flows/current/user.flow.json -------------------------------------------------------------------------------- /flows/demo/admin.flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/flows/demo/admin.flow.json -------------------------------------------------------------------------------- /flows/demo/fake.data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/flows/demo/fake.data.js -------------------------------------------------------------------------------- /flows/demo/fake.flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/flows/demo/fake.flow.json -------------------------------------------------------------------------------- /flows/demo/user.flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/flows/demo/user.flow.json -------------------------------------------------------------------------------- /flows/init/menu.flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/flows/init/menu.flow.json -------------------------------------------------------------------------------- /flows/init/menu.items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/flows/init/menu.items.js -------------------------------------------------------------------------------- /flows/login/password.flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/flows/login/password.flow.json -------------------------------------------------------------------------------- /flows/login/token.flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/flows/login/token.flow.json -------------------------------------------------------------------------------- /flows/select/channel.flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/flows/select/channel.flow.json -------------------------------------------------------------------------------- /flows/select/customer.flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/flows/select/customer.flow.json -------------------------------------------------------------------------------- /flows/select/manager.flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/flows/select/manager.flow.json -------------------------------------------------------------------------------- /flows/select/project.flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/flows/select/project.flow.json -------------------------------------------------------------------------------- /flows/select/user.flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/flows/select/user.flow.json -------------------------------------------------------------------------------- /init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/init.sh -------------------------------------------------------------------------------- /kanban/index.kan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/kanban/index.kan.json -------------------------------------------------------------------------------- /libs/action.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/libs/action.json -------------------------------------------------------------------------------- /libs/channel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/libs/channel.json -------------------------------------------------------------------------------- /libs/column.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/libs/column.json -------------------------------------------------------------------------------- /libs/customer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/libs/customer.json -------------------------------------------------------------------------------- /libs/filter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/libs/filter.json -------------------------------------------------------------------------------- /models/channel.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/models/channel.mod.json -------------------------------------------------------------------------------- /models/contract.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/models/contract.mod.json -------------------------------------------------------------------------------- /models/customer.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/models/customer.mod.json -------------------------------------------------------------------------------- /models/project.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/models/project.mod.json -------------------------------------------------------------------------------- /models/task.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/models/task.mod.json -------------------------------------------------------------------------------- /models/user.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/models/user.mod.json -------------------------------------------------------------------------------- /online-sv.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/online-sv.env -------------------------------------------------------------------------------- /scripts/time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/scripts/time.js -------------------------------------------------------------------------------- /scripts/tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/scripts/tree.js -------------------------------------------------------------------------------- /supervisor/demo-crm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/supervisor/demo-crm.conf -------------------------------------------------------------------------------- /tables/admin.tab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/tables/admin.tab.json -------------------------------------------------------------------------------- /tables/channel.tab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/tables/channel.tab.json -------------------------------------------------------------------------------- /tables/contract.tab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/tables/contract.tab.json -------------------------------------------------------------------------------- /tables/customer/db.tab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/tables/customer/db.tab.json -------------------------------------------------------------------------------- /tables/customer/trail.tab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/tables/customer/trail.tab.json -------------------------------------------------------------------------------- /tables/project/db.tab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/tables/project/db.tab.json -------------------------------------------------------------------------------- /tables/project/my.tab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/tables/project/my.tab.json -------------------------------------------------------------------------------- /tables/project/top.tab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/tables/project/top.tab.json -------------------------------------------------------------------------------- /tables/task/db.tab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/tables/task/db.tab.json -------------------------------------------------------------------------------- /tables/task/my.tab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/tables/task/my.tab.json -------------------------------------------------------------------------------- /traefix/demo-crm.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/traefix/demo-crm.toml -------------------------------------------------------------------------------- /ui/feishu/authback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/ui/feishu/authback.html -------------------------------------------------------------------------------- /ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/ui/index.html -------------------------------------------------------------------------------- /workflows/assign.wflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/demo-crm/HEAD/workflows/assign.wflow.json --------------------------------------------------------------------------------