Twitch Emote Counter
Simply get stats of your chatMost used emotes of the day in Forsen's chat, Last updated at Wednesday, 6 April, 08:13 CEST
An easy step-by-step tutorial for installing the app is described below:
- clone the repo into your desired destination
git clone https://github.com/evokelektrique/twitch-emote-counter/and navigate into the folder - Install the required PHP packages with
composer install - Fill out the environment variables in
.env, make sure theCLIENT_ID,OAUTH_TOKEN,CHANNEL_NAME,TIMEZONE,NICKNAMEoptions are filled properly - Migrate the database by running the
php artisan migratecommand - Run the twitch chat listener
php artisan twitch:listen
Additional steps for production deployment: (skip this on your local machine)
- Setup task scheduler cron job
* * * * * cd /path-to-your-project && php artisan schedule:run >> /dev/null 2>&1
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature - Commit your changes:
git commit -am 'Add some feature' - Push to the branch:
git push origin my-new-feature - Submit a pull request