Bitcdash is a web application to view bitcoin-related information such as:
- Current price & High/Low 24h.
- Percentage price change over time.
- Market sentiment (Crypto Fear & Greed Index).
- Market Cap & Total volume.
- Fees prediction.
Supported currencies:
EUR, USD, JPY, GBP, AUD, CAD, CHF, CNY, HKD.
- Clone the repository.
- Install dependencies with composer (in docker):
docker run --rm -v $(pwd):/opt -w /opt laravelsail/php80-composer:latest composer install
. - rename
.env.example
into.env
and configure it. - configure currencies into
config/currencies.php
. - start docker containers:
./vendor/bin/sail up -d
. - launch migrations:
./vendor/bin/sail artisan migrate
. - start queue worker:
./vendor/bin/sail artisan queue:work
. - Launch job:
./vendor/bin/sail artisan fetch:all
. - start scheduler:
./vendor/bin/sail artisan schedule:work
.
- Price data from coingecko.com (with coingecko-api)
- Sentiment data from alternative.me (with crypto-fear-greed-index-php).
- Fees data from bitcoinfees.earn.com (with bitcoinfees-php).