From fe30d7e01d1590a8cd7b02c2c6b12236c5fa06d1 Mon Sep 17 00:00:00 2001 From: Ethan Tuttle Date: Thu, 31 Aug 2023 07:02:02 -0400 Subject: [PATCH] build: add docker exec commands to mprocs This should more easily allow devs to access the various clis needed to interact with the federation. Also removed an unused import. --- apps/guardian-ui/src/components/AdminMain.tsx | 1 - mprocs.yml | 29 ++++++++++++++++--- 2 files changed, 25 insertions(+), 5 deletions(-) diff --git a/apps/guardian-ui/src/components/AdminMain.tsx b/apps/guardian-ui/src/components/AdminMain.tsx index dc481721e..54f4a79a5 100644 --- a/apps/guardian-ui/src/components/AdminMain.tsx +++ b/apps/guardian-ui/src/components/AdminMain.tsx @@ -1,7 +1,6 @@ import React, { FC } from 'react'; import { Box, Center, Flex, Text, useTheme } from '@chakra-ui/react'; import { ReactComponent as BitcoinIcon } from '../assets/svgs/bitcoin-white.svg'; -import { ReactComponent as EcashIcon } from '../assets/svgs/ecash.svg'; import { ReactComponent as BankNotesIcon } from '../assets/svgs/banknotes.svg'; import { ReactComponent as InfoIcon } from '../assets/svgs/info.svg'; import { AuditSummary } from '../types'; diff --git a/mprocs.yml b/mprocs.yml index 5e3b223d1..8a8fd38bf 100644 --- a/mprocs.yml +++ b/mprocs.yml @@ -39,10 +39,31 @@ procs: REACT_APP_FM_GATEWAY_PASSWORD: 'theresnosecondbest' BROWSER: none fedimintd_1-logs: - shell: sleep 3 && docker logs -f ui-fedimintd_1-1 + shell: sleep 5 && docker logs -f ui-fedimintd_1-1 fedimintd_2-logs: - shell: sleep 3 && docker logs -f ui-fedimintd_2-1 + shell: sleep 5 && docker logs -f ui-fedimintd_2-1 fedimintd_3-logs: - shell: sleep 3 && docker logs -f ui-fedimintd_3-1 + shell: sleep 5 && docker logs -f ui-fedimintd_3-1 fedimintd_4-logs: - shell: sleep 3 && docker logs -f ui-fedimintd_4-1 + shell: sleep 5 && docker logs -f ui-fedimintd_4-1 + fedimintd_1-shell: + shell: docker exec -it ui-fedimintd_1-1 /bin/bash + autostart: false + fedimintd_2-shell: + shell: docker exec -it ui-fedimintd_2-1 /bin/bash + autostart: false + fedimintd_3-shell: + shell: docker exec -it ui-fedimintd_3-1 /bin/bash + autostart: false + fedimintd_4-shell: + shell: docker exec -it ui-fedimintd_4-1 /bin/bash + autostart: false + gatewayd-shell: + shell: docker exec -it ui-gatewayd_1-1 /bin/bash + autostart: false + lnd-shell: + shell: docker exec -it ui-lnd_1-1 /bin/bash + autostart: false + bitcoind-shell: + shell: docker exec -it ui-bitcoind-1 /bin/bash + autostart: false