https://github.com/zooniverse/eras
Enhanced Running Average Stats Service
https://github.com/zooniverse/eras
aggregation classification-counts counter counts hacktoberfest statistics stats
Last synced: 4 months ago
JSON representation
Enhanced Running Average Stats Service
- Host: GitHub
- URL: https://github.com/zooniverse/eras
- Owner: zooniverse
- License: apache-2.0
- Created: 2023-05-16T21:32:03.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-05-28T02:54:58.000Z (about 1 year ago)
- Last Synced: 2025-05-28T03:31:41.970Z (about 1 year ago)
- Topics: aggregation, classification-counts, counter, counts, hacktoberfest, statistics, stats
- Language: Ruby
- Homepage:
- Size: 300 KB
- Stars: 1
- Watchers: 8
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ERAS
Enhanced Running Average Stats Service
Zooniverse's Stats Service Measuring Volunteer Effort and Contribution.
## Full Documentation
See the [Documentation Site](https://zooniverse.github.io/eras) or our [Wiki](https://github.com/zooniverse/eras/wiki) for full documentation, examples, operational details and other information
## Running App Locally With Docker
```
docker-compose build
docker-compose run --rm eras bundle install
docker-compose run --rm eras rails db:create
docker-compose run --rm eras rails db:migrate
docker-compose up
```
If running into errors of missing tables/continuous aggregates run the following:
```
docker-compose run --rm eras rake db:setup:development
```
### Running Specs Locally
```
docker-compose run --rm -e RAILS_ENV=test eras bundle exec rspec
```