Metadata-Version: 2.4
Name: reflex-enterprise
Version: 0.3.8a1
Summary: Package containing the paid features for Reflex. [Pro/Team/Enterprise]
Project-URL: homepage, https://reflex.dev/
Project-URL: documentation, https://enterprise.reflex.dev
Author-email: Nikhil Rao <nikhil@reflex.dev>, Alek Petuskey <alek@reflex.dev>, Masen Furer <masen@reflex.dev>, Thomas Brandého <thomas@reflex.dev>
License-Expression: LicenseRef-Proprietary
License-File: LICENSE
Keywords: python,reflex,reflex-enterprise
Requires-Python: <4.0,>=3.10
Requires-Dist: asgiproxy>=0.2.0
Requires-Dist: httpx
Requires-Dist: joserfc
Requires-Dist: psutil
Requires-Dist: reflex>=0.8.0
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 |
