In today's video, I will show you how to setup Gekko in Visual Studio Code so you can debug crashes and errors in Gekko.
Here are step by step instructions on how to setup Gekko in VS Code:
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}/gekko.js",
"args": [
"--config", "config-live.js"
]
}
]
}