2023-11-30 22:20:26 +00:00
> The [main documentation](https://github.com/bakhirev/assayo/blob/main/documents/RU.md) is in Russian. This is a translation. It may contain errors. If you a native speaker, you can help improve this translation. Thanks!
> - [Русский](https://github.com/bakhirev/assayo/blob/main/documents/RU.md)
> - [English](https://github.com/bakhirev/assayo)
# [Assayo](https://assayo.jp/?ref=github&lang=en)
Visualization and analysis of your git repository data ([demo](https://assayo.jp/demo/?ref=github& lang=en& dump=./test.txt)).
##### Employee can evaluate new workplace
- work pace;
- number of extra hours worked;
- areas of responsibility;
- volume of features and bugs;
- working style of colleagues;
##### Manager can evaluate employees
- identify slackers;
- estimate the amount of code;
- learn the work speed;
- notice behavioral anomalies;
- see the dynamics of work by week;
##### Investor can evaluate product
- product cost;
- cost of features;
- development time;
- forecast of rework time;
- forecast cost;
### How to quickly view the number of commits?
In the root directory of your project, run:
2023-05-12 11:47:48 +00:00
```
git shortlog -s -n -e
```
2023-11-30 22:20:26 +00:00
### How to concat authors?
In the root directory of your project, you need to create a `.mailmap` file.
Example of the contents of the file:
2023-05-12 11:47:48 +00:00
```
Alex B < alex @ mail . uk >
Alex B < alex @ mail . uk > < alex @ gov . tk >
Alex B < alex @ mail . uk > < bakhirev @ ya . kz >
2023-09-25 07:15:24 +00:00
Alex B < alex @ mail . uk > < man64 @ yahoo . com >
2023-05-12 11:47:48 +00:00
```
2023-11-30 22:20:26 +00:00
Read more about the format of this file you can [here ](https://git-scm.com/docs/gitmailmap ).
2023-05-12 11:47:48 +00:00
2023-11-30 22:20:26 +00:00
### How to export data from git?
2023-05-12 11:47:48 +00:00
2023-11-30 22:20:26 +00:00
#### For online viewing
In the root directory of your project run:
2023-05-12 11:47:48 +00:00
```
2023-10-02 14:16:03 +00:00
git --no-pager log --numstat --oneline --all --reverse --date=iso-strict --pretty=format:"%ad>%cN>%cE>%s" > log.txt
```
2023-11-30 22:20:26 +00:00
#### For offline viewing
2023-10-02 14:16:03 +00:00
```
git --no-pager log --numstat --oneline --all --reverse --date=iso-strict --pretty=format:"%ad>%cN>%cE>%s" | sed -e 's/\\/\\\\/g' | sed -e 's/`/"/g' | sed -e 's/^/report.push(\`/g' | sed 's/$/\`\);/g' | sed 's/\$/_/g' > log.txt
2023-05-12 11:47:48 +00:00
```
2023-11-30 22:20:26 +00:00
Git will create a file `log.txt` .
This file contains data for show a report.
2023-10-02 14:16:03 +00:00
2023-11-30 22:20:26 +00:00
The difference between the online and offline format is the presence of a wrapper for strings. The offline format will be pulled up like a `js` file if you just opened `/build/index.html `
2023-05-12 11:47:48 +00:00
2023-11-30 22:20:26 +00:00
### How to view the report online?
2023-05-12 11:47:48 +00:00
2023-11-30 22:20:26 +00:00
- Go to the [website ](https://assayo.jp/ )
- Click the “[Demo](https://assayo.jp/demo)” button.
- Drag the `log.txt` file into the browser window.
2023-05-12 11:47:48 +00:00
2023-11-30 22:20:26 +00:00
### How to view the report offline?
- Download this repository.
- Drag the `log.txt` file to the `/build` folder.
- Run `/build/index.html`
- Or drag the `/build` folder to your repository (where the `log.txt` is located). You can change the name. For example, from `/build` to `/report` .
2023-05-12 11:47:48 +00:00
2023-10-02 14:16:03 +00:00
В этом случае важно, чтобы файл `log.txt` был сгенерирован командой для офлайн просмотра.
2023-11-30 22:20:26 +00:00
### How to rebuild the report build?
- Download this repository
- Run `npm install`
- Run `npm run build`
- The new build will be in the `/build` folder
2023-05-12 11:47:48 +00:00
2023-11-30 22:20:26 +00:00
### How to view a report on a group of microservices?
- Generate for each microservice `log.txt` (`log-1.txt`, `log-2.txt` , `log-3.txt` и т.д.)
- See “How to view an online report?”. At the last step, drag all the files at once into the browser window.
- See “How to see a report offline?”. At the second step, drag all microservice files (`log-1.txt`, `log-2.txt` , `log-3.txt` and etc.) to the report folder (`/build`).
2023-05-12 11:47:48 +00:00
2023-11-30 22:20:26 +00:00
### How to brand the interface?
2023-11-27 12:45:54 +00:00
Вы можете написать свою тему для интерфейса. Можно менять:
- **Заголовок**. Вы можете указать е г о в URL-параметре ```title```. Например: ```?title=You Company```
- **Визуальную тему**. Для этого нужно подготовить CSS файл с новыми стилями и указать е г о адрес в URL-параметре ```theme```. Например: ```?theme=//company.com/some.css```. Вы можете использовать имена классов в качестве селекторов. Большинство из них не меняется в при выходе новой версий.
- **Язык**. Вы можете указать е г о в URL-параметре ```lang```. Например: ```?lang=es```
### Как добавить или отредактировать перевод?
Вы можете добавить новый перевод или поправить текущий в разделе ```ts/translations/``` и создать Pull Request.
2023-05-12 11:47:48 +00:00
### Как подписывать коммиты?
Следуйте практике [Conventional Commits 1.0.0 ](https://www.conventionalcommits.org/en/v1.0.0/ ). Например:
```
JIRA-1234 feat(profile): Added avatar for user
```
- номер задачи в таск трекере `(JIRA-1234)`
- тип работы `(feat, fix, style, refactor, test, doc и т.д.)`
2023-09-22 12:29:50 +00:00
- фича `(profile - раздел сайта, страница или новый функционал, одним словом)`
2023-05-12 11:47:48 +00:00
- какую проблему решали `(Added avatar for user)`
2023-11-27 12:45:54 +00:00
### Как автоматизировать с б о р данных?
2023-08-03 21:56:09 +00:00
2023-09-22 12:29:50 +00:00
#### Без бекенда
2023-08-03 21:56:09 +00:00
- создайте клон нужного вам репозитория;
- скопируйте в корень папку `build` ;
- откройте `build/index.html` в браузере и добавьте в закладки;
- добавьте ярлык на `build/assets/ci-cd.sh` в папку автозагрузки (Windows);
2023-09-22 12:29:50 +00:00
Каждый раз, при перезагрузке компьютера, скрипт будет обновлять статистику по всем данным, которые автоматически влились в основную ветку.
2023-08-03 21:56:09 +00:00
2023-09-22 12:29:50 +00:00
### DevOps (CI/CD)
2023-05-12 11:47:48 +00:00
2023-09-22 12:29:50 +00:00
#### Публичный сервер
Вы можете выкладывать файл с данными для построения отчёта на публичный URL. А для е г о визуализации использовать веб-интерфейс сайта [assayo ](https://assayo.jp/ ). Просто укажите адресс, где лежат данные, в URL-параметре ```dump```:
```
https://assayo.jp/demo/?dump=//you_site.com/some/log.txt
```
#### Приватный сервер
- скачайте [docker образ ](https://hub.docker.com/r/bakhirev/assayo );
- поднимите е г о в локальной сети;
- для просмотра отчётов используйте веб-интерфейс указывая ему адресс, где лежат данные, в URL-параметре ```dump```:
```
2023-09-25 07:15:24 +00:00
http://assayo_url/?dump=//you_url/some/log.txt
assayo_url - URL адресс контейнера assayo, он слушает 80 порт;
you_url - URL адресс вашего контейнера с логами git;
2023-09-22 12:29:50 +00:00
```
2023-11-27 12:45:54 +00:00
По умолчанию образ запустится по адресу ```http://127.0.0.1:80/```. Если не получилось проверьте свободен ли у вас 80 порт.
2023-09-22 12:29:50 +00:00
#### Обновление Docker-образа
- удилить метрику, аллерты, старые билды;
- собрать билд ```npm run build```
- собрать образ ```docker build -t assayo .```
- визуально проверить образ ```docker run --name assayo -p 80:80 -d assayo```;
2023-09-25 07:15:24 +00:00
- поставить тег ```docker tag IMAGE_ID bakhirev/assayo:latest```;
2023-09-22 12:29:50 +00:00
- запушить образ в Docker Hub
### Релизы, примерно, раз в полгода. Что дальше:
2023-05-12 11:47:48 +00:00
- больше советов и достижений;
- итоги года / месяца, печать отчётов;
2023-08-03 21:56:09 +00:00
- локализация и интернационализация;
2023-11-27 12:45:54 +00:00
- анализ файлов;
2023-05-12 11:47:48 +00:00
- разные роли для статистики (скрытие финансов);
- разработка бекенда, интеграции с другими системами;
### Пожелания, предложения, замечания
2023-11-27 12:45:54 +00:00
- telegramm [@bakhirev ](https://t.me/bakhirev ) (приоритетный способ связи)
2023-05-12 11:47:48 +00:00
- [alexey-bakhirev@yandex.ru ](mailto:alexey-bakhirev@yandex.ru )
- сайт [https://assayo.jp/ ](https://assayo.jp/ )