Reflex Enterprise
Reflex Enterprise is a package containing paid features built on top of Reflex.
The full End-User License Agreement (EULA) for Reflex Enterprise is published in the Reflex repository.
Installation
reflex-enterprise must be installed alongside reflex to access the enterprise features.
Install it from PyPI:
pip install reflex-enterpriseFeatures
Usage of reflex_enterprise.
Use rxe.App as your app to enable Enterprise components and rxe.Config
options.
In the main file
Create the app with rxe.App():
import reflex_enterprise as rxe
app = rxe.App()In rxconfig.py
import reflex_enterprise as rxe
config = rxe.Config(
app_name="MyApp",
... # accepts rx.Config arguments plus rxe.Config options
)