Skip to content

vietnguyengit/en-bip39-translator

Repository files navigation

BIP39/English Recovery Seed Words Translator

2024-05-21_20-26-21-ezgif com-video-to-gif-converter

Building and Running the Docker Container

Using Docker

  1. Clone the repository:

    git clone https://github.com/vietnguyengit/en-bip39-translator.git
    cd en-bip39-translator
  2. Build the Docker image:

    docker build -t bip39-translator .
  3. Run the Docker container in detached mode:

    docker run -d -p 8080:8080 bip39-translator
  4. Open your browser and navigate to http://localhost:8080 to see the running application.

Using Docker Compose

  1. Clone the repository:

    git clone https://github.com/vietnguyengit/en-bip39-translator.git
    cd en-bip39-translator
  2. Build and start the Docker container using Docker Compose:

    docker-compose up --build -d
  3. Open your browser and navigate to http://localhost:8080 to see the running application.

Development

If you want to develop or modify the application locally:

  1. Install dependencies:

    npm install
  2. Start the development server:

    npm run dev
  3. Open your browser and navigate to http://localhost:5173 to see the running application.

Code Formatting

To format your code using Prettier, you can use the following commands:

  • Format code:

    npm run format
  • Check code formatting:

    npm run format-check

License

This project is licensed under the MIT License. See the LICENSE file for details.

Acknowledgements