Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jamesrezo/spip-stats-recovery
Recover data from https://stats.spip.net to process it over time.
https://github.com/jamesrezo/spip-stats-recovery
Last synced: about 2 months ago
JSON representation
Recover data from https://stats.spip.net to process it over time.
- Host: GitHub
- URL: https://github.com/jamesrezo/spip-stats-recovery
- Owner: JamesRezo
- License: mit
- Created: 2020-07-04T14:03:21.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-03-06T07:59:47.000Z (11 months ago)
- Last Synced: 2024-03-06T08:49:59.794Z (11 months ago)
- Language: Shell
- Size: 20.5 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# My SPIP Stats
The objective of this tool is to recover data from the [SPIP statistics website](https://stats.spip.net/) to process it over time.
## Run
```bash
# Poll & Store changes if any is detected
docker run -v $(pwd):/build spip/stats-poller
``````bash
# Poll only
docker run -v $(pwd):/build spip/stats-poller poll-only
``````bash
# Display last poll summary
docker run -v $(pwd):/build spip/stats-poller print
``````bash
# Compile archives in CSV Files
docker run -v $(pwd):/build spip/stats-poller compile
``````bash
# Save tthe git repository
docker run -v $(pwd):/build spip/stats-poller -e GIT_AUTHOR_NAME=$(git config --global --get user.name) -e GIT_AUTHOR_EMAIL=$(git config --global --get user.email) save
```