- Handle standups and show warnings if standup is not complete
- Assign team members various roles
- Set deadlines for standups submissions in channels
- Set up individual timetables (schedules) for developers to submit standups
- Remind about upcoming deadlines for teams and individuals
- Tag non-reporters in channels when deadline is missed
- Provide daily & weekly reports on team's performance
- Support English and Russian languages
Comedian works with Slack apps only, if you do not have a slack app configured follow slack installations guide, otherwise:
From project root directory run Comedian with make run
command from your terminal. In case you do not have docker
and docker-compose
, install them on your machine and try again.
Comedian uses goose to run migrations. Read more about the tool itself in official docs from repo. Migrations are executed in runtime after you run project. You can setup database and run migrations manually with goose binary.
When adding migrations follow naming conventions of migrations like 000_migration_name.sql
Comedian works both with English and Russian languages. This feature is implemented with the help of https://github.com/nicksnyder/go-i18n tool. Learn more about the tool in documentation.
If you need to update or add any translations in the project, follow translation guidelines
Run tests with make test
command. This will run integration tests and output the result.
If you want to do manual testing for separate components / or see code coverage with vscode
or go test
, use make setup
first to setup database for testing purposes and then execute tests.