Skip to content
This repository was archived by the owner on Mar 12, 2024. It is now read-only.

Commit 899687e

Browse files
author
Filippo Costa
authored
Fix IPFS localhost issue on some IPv6-enabled systems (#40)
* .gitignore build/, generated/ * Fix IPv6 IPFS localhost issue
1 parent 051468f commit 899687e

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
build/
2+
generated/
3+
14
# Logs
25
logs
36
*.log

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"codegen": "graph codegen",
1111
"build": "graph build",
1212
"deploy": "graph deploy example --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/",
13-
"deploy-local": "graph deploy example --ipfs http://localhost:5001 --node http://127.0.0.1:8020"
13+
"deploy-local": "graph deploy example --ipfs http://127.0.0.1:5001 --node http://127.0.0.1:8020"
1414
},
1515
"devDependencies": {
1616
"@graphprotocol/graph-cli": "^0.23.2",

0 commit comments

Comments
 (0)