This project is a cryptocurrency dashboard assignment project. It is a simple dashboard that allows users to view cryptocurrency prices and market data.
apps/server: The server application.apps/web: The web application.
cd apps/server
yarn devcd apps/web
yarn devFor the server, you need to set the REDIS_URL environment variable.
- Example:
REDIS_URL=redis://localhost:6379
For the web, you need to set the VITE_API_URL and VITE_SOCKET_URL environment variable.
- Example:
VITE_API_URL=http://localhost:3000/api - Example:
VITE_SOCKET_URL=ws://localhost:3000
cd apps/server
yarn buildcd apps/web
yarn build