The company online tools plugin is a feature which allows users to interact with third party tools like Google Drive, Figma, Github, etc. to make work flow for themselves or their team faster and easier.
All our tools are external applications that you may have used or heard of but to maximize productivity, we are giving you access to some of their awesome features right in Zuri Chat.
Figma link to the design implemented:
coming soon... 👀
https://externaltools.zuri.chat/
git clone https://github.com/<username>/zc_plugin_tools.git
#
cd server
yarn install
yarn build
Switch to the server directory and install all dependencies
cd client
yarn install
Add the main repo remote to your project upstream
git remote add upstream https://github.com/zurichat/zc_plugin_tools.git
Pull from upstream
git pull upstream dev
Switch to a new branch (dev)
git checkout -b dev
Add your work/code
When done making your changes, run
git add .
git commit -m <your commit message>
git push origin dev
dev
branch, only if there are no merge conflictsRun backend server
cd server
yarn run dev
Run Frontend server
Open another terminal (can be in vscode) and run
cd client
yarn start