github.com/caos/orbos@v1.5.14-0.20221103111702-e6cd0cea7ad4/docs/orbiter/develop.md (about) 1 # Develop 2 3 1. Commit your local changes using Commitizen 4 1. Run a local Orbiter in debug mode by invoking `./scripts/debug.sh ~/.orb/config` 5 1. In VSCode, use the following launch.json configuration and start a debug session 6 7 ```json 8 { 9 "version": "0.2.0", 10 "configurations": [ 11 { 12 "name": "nodeagent", 13 "type": "go", 14 "request": "attach", 15 "apiVersion": 2, 16 "mode": "remote", 17 "port": 5000, 18 "host": "127.0.0.1" 19 }, 20 ] 21 } 22 ``` 23 24 # Architecture 25 26 See [](docs/kind.md)