wormhole/event_database/cloud_functions/.vscode/launch.json

26 lines
1.0 KiB
JSON

{
// 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": [
{
"name": "start the server",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/cmd/main.go",
"env": {
"GCP_PROJECT": "local-dev",
"BIGTABLE_INSTANCE": "wormhole",
"BIGTABLE_EMULATOR_HOST": "localhost:8086",
"PUBSUB_EMULATOR_HOST": "localhost:8085",
"PUBSUB_NEW_VAA_TOPIC": "new-vaa-devnet",
"PUBSUB_NEW_VAA_SUBSCRIPTION": "extract-payload-devnet",
"PUBSUB_TOKEN_TRANSFER_DETAILS_TOPIC": "create-token-transfer-details-devnet",
"PUBSUB_TOKEN_TRANSFER_DETAILS_SUBSCRIPTION": "calculate-transfer-data-devnet",
},
},
]
}