Karma is a free and open source Rocket.Chat bot designed to let users reward each other with kudos.
Karma was created by Rootstack S.A..
Clone the project with git:
git clone https://gitlab.com/rootstack/bot-on-air/karma.gitNavigate to the project's root directory:
cd karmaInstall dependencies:
npm install
# Or, if you prefer Yarn:
yarn installProvide environment variables:
touch .env
# Then open .env with your favorite editor and type:
KARMA_HOST=my.rocketchat-server.com
KARMA_USERNAME=my@username.com
KARMA_PASSWORD=mypassword
KARMA_DATABASE_HOST=localhost/karmatestingStart a development server:
npm start
# Or
yarn start