docs/api-reference/telemetry.md
Reflex collects anonymized usage statistics — counts of components and built-in features used at compile time, along with versions of Reflex, Python, and the host OS — so we can prioritize bug fixes and guide the future direction of the framework. We do not collect the contents of your source files, state, or any data your app handles at runtime.
For full details, see our Privacy Policy and Terms of Service.
If you log in to Reflex Cloud, your Cloud account identifier is associated with subsequent usage events from that machine.
In your rxconfig.py:
import reflex as rx
config = rx.Config(
app_name="my_app",
telemetry_enabled=False,
)
Or via environment variable:
REFLEX_TELEMETRY_ENABLED=false reflex init --template blank
The environment variable is the only supported opt-out method for reflex
commands executed outside the context of an app directory, such as reflex login and reflex init.