MCPcopy
hub / github.com/reflex-dev/reflex / exists

Method exists

packages/reflex-hosting-cli/src/reflex_cli/core/config.py:314–321  ·  view source on GitHub ↗

Check if the config file exists. Returns: bool: True if the config file exists, False otherwise.

(self)

Source from the content-addressed store, hash-verified

312 return dataclasses.replace(self, **kwargs)
313
314 def exists(self) -> bool:
315 """Check if the config file exists.
316
317 Returns:
318 bool: True if the config file exists, False otherwise.
319
320 """
321 return bool(self._cloud_config_path) and self._cloud_config_path.exists()

Callers 15

detect_encodingFunction · 0.80
check_requirementsFunction · 0.80
delete_token_from_configFunction · 0.80
save_token_to_configFunction · 0.80
generate_configFunction · 0.80
from_yamlMethod · 0.80
from_tomlMethod · 0.80
deployFunction · 0.80
scale_appFunction · 0.80
_load_dotenv_from_filesFunction · 0.80

Calls

no outgoing calls