Skip to content

Commit 9667c40

Browse files
committed
1 parent bff7554 commit 9667c40

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,35 @@
11
# Getting Started
2+
3+
## Dependencies
4+
5+
```bash
6+
sudo pacman -S git curl docker docker-compose go jq -y
7+
sudo systemctl enable docker.service
8+
sudo systemctl enable docker.socket
9+
sudo systemctl restart docker.service
10+
sudo systemctl restart docker.socket
11+
12+
sudo usermod -a -G docker ${USER}
13+
sudo usermod -a -G docker $USER
14+
15+
# sudo chown ${USER}:docker /var/run/docker.sock
16+
17+
sudo reboot
18+
```
19+
20+
## Install Fabric
21+
22+
```bash
23+
# git clone https://github.com/hyperledger/fabric-samples.git
24+
curl -sSLO https://raw.githubusercontent.com/hyperledger/fabric/main/scripts/install-fabric.sh && chmod +x install-fabric.sh
25+
./install-fabric.sh
26+
```
27+
28+
## Reference
29+
30+
* <https://github.com/hyperledger/fabric-samples>
31+
* <https://github.com/hyperledger/fabric-gateway>
32+
* <https://github.com/hyperledger/fabric-sdk-node>
33+
* <https://github.com/hyperledger/fabric-sdk-go>
34+
* <https://github.com/hyperledger/fabric-contract-api-go>
35+
* <https://github.com/hyperledger/fabric-chaincode-node>

0 commit comments

Comments
 (0)