Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/cyrille37/mattermost-analyzer

WIP on a Mattermost usage analyzer
https://github.com/cyrille37/mattermost-analyzer

Last synced: 27 days ago
JSON representation

WIP on a Mattermost usage analyzer

Awesome Lists containing this project

README

        

# Mattermost analyzer

WIP on a Mattermost usage analyzer.

![screenshot 01](./screenshot01.png)

Access to Mattermost API done with [thePanz/MattermostClient](https://github.com/thePanz/MattermostClient).

## Run

checkout the code

$ git clone [email protected]:Cyrille37/mattermost-analyzer.git

configure `.env file`. Important entries are `DB_*` and `MATTERMOST__*`

create database

`$ mysqladmin -u -p create `

install dependencies

`$ composer install --no-dev`

create tables

`$ ./artisan migrate`

fill data

`$ ./artisan mma:browseServer`

view data

`$ ./artisan serve`

browse at http://127.0.0.1:8000

## Tech

```php
// a Datetime from a milliseconds timestamp
echo (Carbon::createFromTimestampMs(1717579823989))->toDateString(), "\n" ;
```