Quick start
This example fetches a configuration value from your application at runtime.
Python
python
from platform_sdk import config
timeout = config.get("checkout.timeout")
print(timeout)Node.js
js
const timeout = await platform.config("checkout.timeout")
console.log(timeout)Next steps
- Install an SDK for your runtime.
- Configure credentials for your environment.
- Add listeners for real-time updates.

