Get a notification in Slack every time someone asks you to check some code on Github or Bitbucket.
In order to start using Dashi in your daily routine, you need to:
- Generate a Slack Incoming WebHooks and copy the URL.
- Signup at Dashi
- Type your Github or Bitbucket username
- Paste the copied Slack Webook URL
You can visit the Dashi homepage to get a detailed guide.
Make sure you have installed PHP and MySQL/MariaDB.
Create the database:
CREATE DATABASE dashi
DEFAULT CHARACTER SET utf8
DEFAULT COLLATE utf8_general_ci;
Install Composer.
Now, in your terminal:
# cd /home or wherever you want to install it
cd /home
# clone the project
git clone https://github.com/DannyFeliz/Dashi.git
cd Dashi
# Copy the .env.example file as .env and edit with your local settings
cp .env.example .env
# run composer
composer update
# generate the app key
php artisan key:generate
# generate optimized class loader
php artisan optimize
# run the migrations
php artisan migrate
# run the seeding methods
php artisan db:seed
# serves the app
php artisan serve
Read our contributing guide to learn about our development process, how to propose bugfixes and improvements, and how to create a pull request.