- Node.js & npm
- Docker (optional)
Clone the repository
git clone https://github.com/iamwebwiz/web3bridge-assessment
Change directory to cloned repo
cd web3bridge-assessment
Install dependencies
npm install
Start development server
npm run dev
The application will be served on port 5173, so you can access it at http://localhost:5173
To run the application using Docker, ensure you have Docker installed on your machine and that it is running, then, run the following command to spin up the container:
docker compose up -d
This will start the container for the app in detached mode and you'll be able to access the app at http://localhost:5173.
To stop the container, you can run the following command:
docker compose down
Cheers! 🥂