Chen-Michael

Results 4 comments of Chen-Michael

> I solved this problem by using Swift Package Manager instead of CocoaPods. However, since the minimum supported version of SPM is iOS 14, if the supported version of your...

you need modify the shell file ``` vi /root/one-click-tangle/explorer/tangle-explorer.sh ``` find the function installExplorer, add mkdir command after "git clone https://github.com/iotaledger/explorer $EXPLORER_SRC" like ``` installExplorer () { # We need...

1. modify the shell file ``` vi /root/one-click-tangle/explorer/tangle-explorer.sh ``` remove startExplorer in install block original ``` case "${command}" in "help") help ;; "install") installExplorer startExplorer ;; "start") startExplorer ;; "stop")...

1. open file ``` vi /root/one-click-tangle/explorer/docker-compose.yaml ``` find the volumes of explorer-api like ``` volumes: - ./application-data:/app/data/.local-storage ``` path "./application-data" mapping to docker path "/app/data/.local-storage" 2. create folder ``` cd...