Server: https://github.com/krogank9/cryptodash-server
- Node.js (v14 or higher recommended)
- npm
-
Clone the repository
git clone https://github.com/krogank9/cryptodash-client.git cd cryptodash-client -
Install dependencies
npm install
-
Ensure the server is running
The client expects the cryptodash-server to be running. By default, in development mode it connects to
http://localhost:8443/api.
npm run devThis starts the Next.js development server with hot-reloading at http://localhost:3000.
-
Build the application
npm run build
-
Start the production server
npm start
The API endpoint is configured in config.js:
- Development:
http://localhost:8443/api - Production:
https://cryptodash.ltkdigital.com:8443/api
To change these, edit the config.js file in the project root.
