All Projects → DannyFeliz → Dashi

DannyFeliz / Dashi

Licence: MIT license
💯 Get a notification in Slack every time someone asks you to check some code on Github or Bitbucket.

Programming Languages

PHP
23972 projects - #3 most used programming language
HTML
75241 projects
Vue
7211 projects

Projects that are alternatives of or similar to Dashi

code-review-culture
📖 The art of cultivating a strong dev culture in your team.
Stars: ✭ 19 (-34.48%)
Mutual labels:  review, code
Change Detection Review
A review of change detection methods, including codes and open data sets for deep learning. From paper: change detection based on artificial intelligence: state-of-the-art and challenges.
Stars: ✭ 248 (+755.17%)
Mutual labels:  review, code
pr-reviews-reminder-action
A GitHub Action to send Slack/Teams notification for Pull Request that are waiting for reviewers.
Stars: ✭ 18 (-37.93%)
Mutual labels:  reviews, notification
solidus reviews
Product review/rating functionality for your Solidus store.
Stars: ✭ 17 (-41.38%)
Mutual labels:  review, reviews
goodreads-toolbox
9 tools for Goodreads.com, for finding people based on the books they’ve read, finding books popular among the people you follow, following new book reviews, etc
Stars: ✭ 56 (+93.1%)
Mutual labels:  reviews, notification
Cargo Crev
A cryptographically verifiable code review system for the cargo (Rust) package manager.
Stars: ✭ 1,268 (+4272.41%)
Mutual labels:  review, code
Leetcode Sol Res
Clean, Understandable Solutions and Resources for LeetCode Online Judge Algorithm Problems.
Stars: ✭ 1,647 (+5579.31%)
Mutual labels:  review
Sputnik
Static code review for your Gerrit patchsets. Runs Checkstyle, PMD, FindBugs, Scalastyle, CodeNarc, JSLint for you!
Stars: ✭ 189 (+551.72%)
Mutual labels:  review
Merge Request Integration
An Intellij IDE plugin which helps you manage Merge Request and do Code Review right in your IDE.
Stars: ✭ 122 (+320.69%)
Mutual labels:  review
Sa Papers
📄 Deep Learning 中 Sentiment Analysis 論文統整與分析 😀😡☹️😭🙄🤢
Stars: ✭ 111 (+282.76%)
Mutual labels:  review
Codeponder
Marketplace for Code Reviews
Stars: ✭ 221 (+662.07%)
Mutual labels:  review
React Native In App Review
The Google Play In-App Review API, App store rating API lets you prompt users to submit Play Store or App store ratings and reviews without the inconvenience of leaving your app or game.
Stars: ✭ 175 (+503.45%)
Mutual labels:  review
Nlp Competitions List Review
复盘所有NLP比赛的TOP方案,只关注NLP比赛,持续更新中!
Stars: ✭ 1,997 (+6786.21%)
Mutual labels:  review
Papers we read
Summaries of the papers that are discussed by VLG.
Stars: ✭ 203 (+600%)
Mutual labels:  review
Spree reviews
Straightforward review/rating functionality.
Stars: ✭ 122 (+320.69%)
Mutual labels:  review
Ofscripts
A collection of the AppleScripts I use to extend OmniFocus.
Stars: ✭ 231 (+696.55%)
Mutual labels:  review
Bird Recognition Review
A list of useful resources in the bird sound (song and calls) recognition, such as datasets, papers, links to open source projects and competitions
Stars: ✭ 116 (+300%)
Mutual labels:  review
Ebisu
Public-domain Python library for flashcard quiz scheduling using Bayesian statistics. (JavaScript, Java, Dart, and other ports available!)
Stars: ✭ 176 (+506.9%)
Mutual labels:  review
Survey Computer Vision
2020-2021年计算机视觉综述论文分方向整理
Stars: ✭ 207 (+613.79%)
Mutual labels:  review
Hyperion Ios
In-app design review tool to inspect measurements, attributes, and animations.
Stars: ✭ 1,964 (+6672.41%)
Mutual labels:  review

Dashi

Get a notification in Slack every time someone asks you to check some code on Github or Bitbucket.

Usage

In order to start using Dashi in your daily routine, you need to:

  1. Generate a Slack Incoming WebHooks and copy the URL.
  2. Signup at Dashi
  3. Type your Github or Bitbucket username
  4. Paste the copied Slack Webook URL

You can visit the Dashi homepage to get a detailed guide.

Development setup

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

Contributing

Read our contributing guide to learn about our development process, how to propose bugfixes and improvements, and how to create a pull request.

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].