Reflex-Enterprise docs
Reflex Enterprise is a package containing paid features built on top of Reflex.
Installation of reflex_enterprise.
pip install reflex-enterprise
Usage of reflex_enterprise.
Using rxe.App
as your app
is required to use any of the components provided by the enterprise package, as well as config options provided by rxe.Config
.
In the main file
Instead of the usual rx.App()
to create your app, use the following:
import reflex_enterprise as rxe rxe.App()
In rxconfig.py
import reflex_enterprise as rxe config = rxe.Config( app_name="MyApp", ... # you can pass all rx.Config arguments as well as the one specific to rxe.Config )