File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed
Contents/blockchain/Hyperledger Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change 1
1
# 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 >
You can’t perform that action at this time.
0 commit comments