For windows wsl2 .sh file might need dos2unix format
$ sudo apt-get install dos2unixcargo build --releaseThis will install and clone the polkadot-sdk repository if the folder did not exist
$ dot install After dot install you can start a development node with template option
- minimal template
- parachain template
- solocahin template
To run a template node $ dot run {template}
This build and start a node in development environment
$ dot run solochainThis will check if polkadot-sdk is available in your directory and build the omni-node template. a binary file will be generated under nodes/polkadot-omni-node
$ dot add omni-nodeTo configure your omni node you must specify your chan spec in script/omni-node.sh
For windows wsl2 sh /bin/bash^M: bad interpreter: No such file or directory is encountered run the following command to remove the ^M
$ dos2unix ./script/omni-node.sh$ dot run omni-node