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 premium features built on top of Reflex designed to help you build enterprise-grade applications faster.
8
+
9
+
See complete docs at [Enterprise Docs](https://enterprise.reflex.dev)
10
+
11
+
## Features
12
+
13
+
So far the enterprise package contains the following features:
14
+
15
+
- AgGrid and AgCharts
16
+
- Single Port Proxy
17
+
18
+
More features will be added in the future. If you have any feature requests, please [open an issue](https://github.com/reflex-dev/reflex/issues/new/choose).
19
+
20
+
## Installation of reflex_enterprise.
21
+
22
+
```bash
23
+
pip install reflex-enterprise
24
+
```
25
+
26
+
## Usage of reflex_enterprise.
27
+
28
+
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`.
29
+
30
+
### In the main file
31
+
32
+
Instead of the usual `rx.App()` to create your app, use the following:
33
+
```python
34
+
import reflex_enterprise as rxe
35
+
rxe.App()
36
+
```
37
+
38
+
### In rxconfig.py
39
+
```python
40
+
import reflex_enterprise as rxe
41
+
config = rxe.Config(
42
+
app_name="MyApp",
43
+
...# you can pass all rx.Config arguments as well as the one specific to rxe.Config
44
+
)
45
+
```
46
+
47
+
## Pricing
48
+
49
+
Unlike the open source `reflex` package, the `reflex-enterprise` package is free to use for all users but requires a paid tier to remove [branding](https://enterprise.reflex.dev/built-with-reflex/).
0 commit comments