The Crypto Price Tracker is a project designed to monitor the real-time prices of various cryptocurrencies, allowing users to stay updated on market fluctuations. Users can set personalized price thresholds to receive alerts when their chosen cryptocurrencies reach specific values, helping them make informed investment decisions.
- Clone the repository:
git clone https://github.com/Chiesa14/crypto-price-tracker.git
- Setup the frondend:
cd Frontend
npm install
Run the following command to start the frontend:
npm run dev
- Setup the backend:
cd Backend
npm run dev
- Environment Variables
To configure the application, create a .env
file in the this Backend directory with the following variables:
PORT=5000
COINGECKO_API_URL=https://api.coingecko.com/api/v3/coins/markets
CRYPTO_IDS=bitcoin,ethereum,litecoin
CURRENCY=usd
Run the following command to start the backend:
nodemon server.js