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
from pcweb.pages.pricing.pricing import pricing_path
4
+
```
5
+
6
+
# Reflex Branding
7
+
8
+
Remove Reflex branding from your exported or deployed sites.
9
+
10
+
By default, Reflex branding, such as the "Made in Reflex" badge, will appear on all your published sites.
11
+
12
+
13
+
## How to remove the Reflex branding from your app
14
+
15
+
You can turn off the Reflex branding, when deploying to Reflex Cloud, by adding the `--badge` flag to the `reflex deploy` command.
16
+
17
+
In order for this to work a user hosting with Reflex Cloud must be logged in and on a [paid plan]({pricing_path}) (at least pro tier).
18
+
19
+
20
+
```md alert info
21
+
# A paid plan is required to remove the Reflex branding.
22
+
```
23
+
24
+
If you are self-hosting check out these instructions on [how to remove the Reflex branding from your self-hosted app]({hosting.self_hosting.path}#remove-reflex-branding-from-your-self-hosted-app).
Copy file name to clipboardExpand all lines: docs/hosting/self-hosting.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,7 @@
2
2
import reflex as rx
3
3
4
4
from pcweb.pages.docs import getting_started
5
+
from pcweb.pages.pricing.pricing import pricing_path
5
6
```
6
7
7
8
# Self Hosting
@@ -118,3 +119,14 @@ Finally, you can start your Reflex container service as follows.
118
119
```bash
119
120
docker run -d -p 3000:3000 -p 8000:8000 --name app reflex-project:latest
120
121
```
122
+
123
+
124
+
## Remove Reflex branding from your self-hosted app
125
+
126
+
To remove the Reflex branding, such as the "Made in Reflex" badge, from your self-hosted app, you must add the `--badge` flag to the export command `reflex export --badge` or the run command `reflex run --env prod --badge`.
127
+
128
+
129
+
130
+
```md alert info
131
+
# A paid [team plan]({pricing_path}) is required to remove the Reflex branding for self-hosted apps.
("file-badge", "Remove Branding with Reflex Cloud", "Check out the Reflex Branding doc page to learn how to remove the 'Made in Reflex' badge from your app.")
("file-badge", "Remove Branding for Self-Hosting", "Check out the Remove Reflex Branding section in the Self Hosting doc page to learn how to remove the 'Made in Reflex' badge from your app."),
0 commit comments