Skip to content

Commit

Permalink
build: add docker exec commands to mprocs
Browse files Browse the repository at this point in the history
This should more easily allow devs to access the various clis needed to interact with the federation.
Also removed an unused import.
  • Loading branch information
EthnTuttle committed Aug 31, 2023
1 parent 954a0fa commit fe30d7e
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 5 deletions.
1 change: 0 additions & 1 deletion apps/guardian-ui/src/components/AdminMain.tsx
Original file line number Diff line number Diff line change
@@ -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';
Expand Down
29 changes: 25 additions & 4 deletions mprocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit fe30d7e

Please sign in to comment.