Documentation Index
Fetch the complete documentation index at: https://docs.goldsky.com/llms.txt
Use this file to discover all available pages before exploring further.
Debugging locally
Logs and run events stream to the terminal where you rungoldsky compose start. Output is formatted and colored so it’s easy to scan.
Chain forking
For testing against live on-chain state without spending gas, start your app with the--fork-chains flag:
Testing individual tasks
You can trigger any task on your locally-running app by name with a JSON payload:callTask posts it to the local server at http://localhost:4000/tasks/<name> and prints the response.
Debugging a Deployed Compose App
Once your app is running in the cloud, debug it from its details page in the web app athttps://app.goldsky.com/dashboard/compose/{appName}. From there you can view logs and inspect task run records. See Monitoring your app via the webapp for a walkthrough.
Every context function call (for example evm.wallet(), evm.writeContract(...), ctx.db.collection(...)) is automatically captured as a run event and shown in the task run view. You can add your own logs and errors with the standard TypeScript console — they show up alongside the run events.
Examples
Next Steps
Deploying your App
Learn about deploying your app to the cloud for production use cases.
Full CLI Reference
View the full CLI command reference