Skip to content

zurichat/zc_plugin_todo

Repository files navigation

ZURI.CHAT TODO PLUGIN

Stack Laravel and VueJs

  • To install dependencies You need to composer installed, after installing composer
composer install

which will install all the dependencies in the composer.json

  • To start the Laravel app
php artisan serve

will start the laravel server


Installation Guide For Laravel


Fork The Repo And Clone Your Fork

cd zc_plugin_todo
git remote add upstream https://github.com/zurichat/zc_plugin_todo.git
git pull upstream develop
copy and paste your `.env` to your root dir
composer install
php artisan serve

Visit localhost:8000 in your browser

When You Make Changes

git add .
git commit -m "commit message"
git pull upstream develop

Make Sure there is no conflict, Make sure you push to develop branch -- Create a develop branch in your local

git push origin develop

Then Create Your Pull Request

  • Also include your issue number in the commit message with a close action e.g "...this commit close #10" which automatically closes the issue with #10 on merge

Contribution Guide