https://github.com/killercup/coin
https://github.com/killercup/coin
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/killercup/coin
- Owner: killercup
- License: gpl-3.0
- Created: 2017-04-11T08:09:34.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-11T08:38:43.000Z (almost 9 years ago)
- Last Synced: 2025-06-02T11:58:26.636Z (10 months ago)
- Language: PHP
- Size: 445 KB
- Stars: 0
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Crypto Trading Dashboard
Delivers an overview of your cryptotrading activities
## installation
1. Install PHP dependencies:
composer Install
2. Copy ".env-example" to ".env" and fill in all missing values
3. Run Database Migrations:
php artisan migrate
4. Install js dependencies
npm install
5. Build js and css Assets
npm run
## Add another crypto trading plattform
1. Create a class which implements the DriverInterface App\Driver\DriverInterface.php. See Bitcoinde and Poloniex implementations as examples.
2. Add the plattform credentials in config/app.php in the "driver" section
3. Add Driver to "api.active" config (in ".env" or "config.app.php")
You may test your driver class by creating a test which extends the AbstractDriverTest class under "tests/Integration"