Metadata-Version: 2.3
Name: reflex-enterprise
Version: 0.0.2a1
Summary: Package containing the paid features for Reflex. [Pro/Team/Enterprise]
License: LICENSE
Keywords: reflex,python,reflex-enterprise
Author: Nikhil Rao
Author-email: nikhil@reflex.dev
Requires-Python: >=3.10, <4.0
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Provides-Extra: proxy
Requires-Dist: asgiproxy (>=0.2.0) ; extra == "proxy"
Requires-Dist: reflex (>=0.7.1)
Project-URL: Documentation, https://reflex.dev/docs/
Project-URL: Homepage, https://reflex.dev/
Description-Content-Type: text/markdown

# How to install reflex_enterprise.   

```bash
pip install reflex-enterprise
```

# How to use reflex enterprise.   
In the main file, instead of using `rx.App()` to create your app, use the following:


## In the main file
```python
import reflex_enterprise as rxe

...

rxe.App()

...
```

## In rxconfig.py
```python
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
)
```

### Enterprise features

| Feature | Description | Minimum Tier (Cloud) | Minimum Tier (Self-hosted) |
| --- | --- | --- | --- |
| `show_built_with_reflex` | Toggle the "Built with Reflex" badge. | Pro | Team|
| `use_single_port` | Enable one-port by proxying from backend to frontend. | - | Team |

