Company Files Management Plugin for Zuri Chat.
- Ensure nodejs and git are installed in machine
- Clone this repo using
git clone https://github.com/zurichat/zc_plugin_company_files.git
- Change directory into the new clone
cd zc_plugin_company_files
- Run setup script to install all packages using
npm run install-setup
- Now run server in development mode with
npm run dev
- Fork the repository
- Clone and then open it up on your prefered code editor
- Open your terminal & set the upstream branch:
git remote add upstream https://github.com/zurichat/zc_plugin_company_files.git
- Pull upstream
git pull upstream main
- Create a new branch for the user story you're working on eg :
git checkout -b feat-import-file-from-url
- After making changes, do
git add .
- Commit your changes with a descriptive commit message :
git commit -m "your commit message"
. - To make sure there are no conflicts :
git pull upstream main
- Push changes to your new branch :
git push origin feat-import-file-from-url
- Create a pull request to the
dev
branch.