Skip to content

Commit

Permalink
Refactor Docker setup and monitoring workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
K-NRS committed Sep 11, 2024
1 parent cddb1a7 commit 5751406
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,14 @@ It provides a local Sui network and local explorer to develop and test your Sui

Developing and testing Sui blockchain applications can be complex, requiring a local network setup, explorer, and various tools. Suibase Docker simplifies this process by providing a containerized environment that's easy to set up and use. It allows developers to focus on building their applications rather than managing infrastructure, making Sui development more accessible and efficient.

## 🚰 Faucet

Assuming that you've create a suibase container named `suibase`, you can use the faucet to get some testnet Sui coins.

```bash
docker exec -ti suibase localnet faucet <address>
```

---

## Suibase
Expand Down
7 changes: 3 additions & 4 deletions start.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#!/bin/bash
localnet start && \
sui-explorer-local start && \
tail -f ~/suibase/workdirs/common/logs/suibase-daemon.log && \
tail -f ~/suibase/workdirs/common/logs/run-daemon.log
localnet start &! && \
sui-explorer-local start &! && \
tail -f ~/suibase/workdirs/common/logs/suibase-daemon.log

0 comments on commit 5751406

Please sign in to comment.