You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Reflex Enterprise is a package containing paid features built on top of Reflex.
8
+
9
+
See complete docs at [Enterprise Docs](https://enterprise.reflex.dev)
10
+
11
+
## Installation of reflex_enterprise.
12
+
13
+
```bash
14
+
pip install reflex-enterprise
15
+
```
16
+
17
+
## Usage of reflex_enterprise.
18
+
19
+
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`.
20
+
21
+
### In the main file
22
+
23
+
Instead of the usual `rx.App()` to create your app, use the following:
24
+
```python
25
+
import reflex_enterprise as rxe
26
+
rxe.App()
27
+
```
28
+
29
+
### In rxconfig.py
30
+
```python
31
+
import reflex_enterprise as rxe
32
+
config = rxe.Config(
33
+
app_name="MyApp",
34
+
...# you can pass all rx.Config arguments as well as the one specific to rxe.Config
0 commit comments