Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/cyrille37/mattermost-analyzer
- Owner: Cyrille37
- Created: 2020-01-03T15:38:59.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-06-05T21:24:52.000Z (7 months ago)
- Last Synced: 2024-06-05T23:01:23.135Z (7 months ago)
- Language: PHP
- Size: 2.49 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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" ;
```