Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/davidromani/folding-at-home-api-console
A PHP command line tool to interact with Folding@Home project API
https://github.com/davidromani/folding-at-home-api-console
command console foldingathome php7 symfony
Last synced: 20 days ago
JSON representation
A PHP command line tool to interact with Folding@Home project API
- Host: GitHub
- URL: https://github.com/davidromani/folding-at-home-api-console
- Owner: davidromani
- License: mit
- Created: 2020-04-29T10:41:41.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-11-24T21:50:30.000Z (almost 3 years ago)
- Last Synced: 2024-10-07T03:07:05.989Z (about 1 month ago)
- Topics: command, console, foldingathome, php7, symfony
- Language: PHP
- Homepage:
- Size: 190 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
Folding@Home API console
========================A Symfony 4.4 LTS console command to interact with [Folding@Home](https://foldingathome.org) project API. This command provides an easy method to check the detailed team stats.
## Installation requirements
* PHP 7.4
* Composer 1.10## Installation instructions
```bash
$ git clone [email protected]:davidromani/folding-at-home-api-console.git
$ cd folding-at-home-api-console
$ composer install
$ ./vendor/bin/doctrine orm:schema-tool:create -q -n
```## Usage
Show team stats by ID number in an output pretty format. Remember to replace `` by a team number or team 0 will be searched.
```bash
$ php app.php folding:get:team:stats
```Persist team stats by ID number into a local storage database. Remember to replace `` by a team number or team 0 will be searched.
```bash
$ php app.php folding:get:team:stats --persist
```Show list table with total team rankings list stored in the local database.
```bash
$ php app.php folding:get:stored:teams:ranking
```