https://github.com/fredericheem/coinfeed-backend
coinfeed-backend grabs bitcoin market data from different exchanges and store the data into databases
https://github.com/fredericheem/coinfeed-backend
Last synced: about 2 months ago
JSON representation
coinfeed-backend grabs bitcoin market data from different exchanges and store the data into databases
- Host: GitHub
- URL: https://github.com/fredericheem/coinfeed-backend
- Owner: FredericHeem
- Created: 2014-01-05T16:42:07.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-10-28T13:21:00.000Z (over 11 years ago)
- Last Synced: 2025-01-11T08:48:41.377Z (over 1 year ago)
- Language: Java
- Size: 238 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Introduction
**coinfeed-backend** grabs bitcoin market data from different exchanges and store the data into databases.
See [coinfeed](https://github.com/FredericHeem/coinfeed) for the web frontend.
## Getting started
### Get source and build it
git clone git@github.com:FredericHeem/coinfeed-backend.git
cd coinfeed-backend
mvn install
## Development
**coinfeed-backend** is built with maven, developed with eclipse, tested with junit, statically analyzed, code covered, and continuously integrated: [](https://travis-ci.org/FredericHeem/coinfeed-backend)
The state machine code generator [StateForge](http://www.stateforge.com) is used to implement this backend. By the way, I'm the author of these state machine tools, developers need to eat their own dog food.
Mongodb is used to store the data.
### Generate the eclipse project
mvn eclipse:eclipse
### Run the unitest
mvn test
### Run static analysis with [pmd] (http://pmd.sourceforge.net/)
mvn pmd:pmd
View the report at target/site/pmd.html
### Run static analysis [findbugs] (http://findbugs.sourceforge.net/)
mvn site:site
View the report at target/site/findbugs.html
### Generate the code coverage report with [cobertura] (http://cobertura.sourceforge.net/)
mvn cobertura:cobertura
View report at target/site/cobertura/index.html
## Contributors
[FredericHeem](https://github.com/FredericHeem)