i started by running a hornet-nest-node and wasp node on devnet , then i installed wasp-cli to interact with my node but i didn't figure out what are next steps ! my wasp-config.json :
{
"database": {
"directory": "/wasp/waspdb"
},
"inx": {
"address": "hornet-nest:9029",
"maxConnectionAttempts": 30
},
"logger": {
"level": "debug",
"disableCaller": false,
"disableStacktrace": true,
"encoding": "console",
"outputPaths": [
"stdout",
"wasp.log"
],
"disableEvents": true
},
"network": {
"bindAddress": "0.0.0.0",
"externalAddress": "auto"
},
"node": {
"disablePlugins": [],
"enablePlugins": []
},
"users": {
"wasp": {
"password": "wasp",
"permissions": [
"dashboard",
"api",
"chain.read",
"chain.write"
]
}
},
"webapi": {
"auth": {
"jwt": {
"durationHours": 24
},
"basic": {
"username": "wasp"
},
"ip": {
"whitelist": [
"127.0.0.1"
]
},
"scheme": "none"
},
"bindAddress": "0.0.0.0:9090"
},
"dashboard": {
"auth": {
"jwt": {
"durationHours": 24
},
"basic": {
"username": "wasp"
},
"ip": {
"whitelist": [
"127.0.0.1"
]
},
"scheme": "basic"
},
"bindAddress": "0.0.0.0:7000"
},
"peering": {
"port": 4000,
"netid": "0.0.0.0:4000"
},
"nanomsg": {
"port": 5550
},
"metrics": {
"bindAddress": "0.0.0.0:2112",
"enabled": true
}
}
i appreciate any suggestion if there is onother way or tutorial !