A web UI to interact with the Murmur Wallet.
You need to have your .env file set up regardless of whether you are running the application
natively or with Docker.
Copy .env.example to .env. If necessary, modify the values in the .env file.
cp .env.example .envTo run this project natively, follow these steps:
To install the necessary npm dependencies, run the following command in your project directory:
npm installTo start the development server, use the following command:
npm run devThe development server will start, and you can view the website by opening http://localhost:3000 in your browser.
To build the application for production, run:
npm run buildThis will create an optimized build of your application in the out directory.
You can also run the application using Docker. Follow these steps:
To build the Docker image, run the following command in the directory containing the Dockerfile:
docker build -t murmur-dapp .To start a container from the built image, run the following command:
docker run -p 3000:3000 murmur-dappThe application will start inside a Docker container, and you can access it at http://localhost:3000.
Contributions are welcome! Please open an issue or submit a pull request.
This project is licensed under the Apache-2.0. See the APACHE-LICENSE.md file for details.
For any inquiries, please contact Ideal Labs.