Skip to content

Commit e6d73e5

Browse files
tgberkeleyTom Gotsman
andauthored
update docs for badge (#1199)
Co-authored-by: Tom Gotsman <[email protected]>
1 parent 7fe228c commit e6d73e5

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

docs/hosting/reflex-branding.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ from pcweb.pages.pricing.pricing import pricing_path
77

88
Remove Reflex branding from your exported or deployed sites.
99

10-
By default, Reflex branding, such as the "Made in Reflex" badge, will appear on all your published sites.
10+
By default, Reflex branding, such as the "Built with Reflex" badge, will appear on all your published sites.
1111

1212

1313
## How to remove the Reflex branding from your app
1414

15-
You can turn off the Reflex branding, when deploying to Reflex Cloud, by adding the `--badge` flag to the `reflex deploy` command.
15+
You can turn off the Reflex branding, when deploying to Reflex Cloud, by adding `show_built_with_reflex=False` to the `rx.Config()` in the `rxconfig.py` file.
1616

1717
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).
1818

docs/hosting/self-hosting.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,7 @@ docker run -d -p 3000:3000 -p 8000:8000 --name app reflex-project:latest
123123

124124
## Remove Reflex branding from your self-hosted app
125125

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-
126+
To remove the Reflex branding, such as the "Built with Reflex" badge, from your self-hosted app, you must add `show_built_with_reflex=False` to the `rx.Config()` in the `rxconfig.py` file.
128127

129128

130129
```md alert info

pcweb/pages/pricing/plan_cards.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ def plan_cards() -> rx.Component:
252252
("clock", "30 days log retention"),
253253
("globe", "Multi-region"),
254254
("brush", "Custom domains"),
255-
("file-badge", "Remove Branding", "Check out the Reflex Branding doc page to learn how to remove the 'Made in Reflex' badge from your app."),
255+
("file-badge", "Remove Branding", "Check out the Reflex Branding doc page to learn how to remove the 'Built with Reflex' badge from your app."),
256256
("circle-plus", "Everything in Hobby"),
257257
],
258258
"Start with Pro plan",
@@ -268,7 +268,7 @@ def plan_cards() -> rx.Component:
268268
("git-branch", "Create multiple projects"),
269269
("signal", "Full Website Analytics"),
270270
("lock-keyhole", "One Click Auth"),
271-
("file-badge", "Remove Branding Everywhere", "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."),
271+
("file-badge", "Remove Branding Everywhere", "Check out the Remove Reflex Branding section in the Self Hosting doc page to learn how to remove the 'Built with Reflex' badge from your app."),
272272
("circle-plus", "Everything in Pro"),
273273
],
274274
"Contact sales",

pcweb/pages/pricing/table.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
]
8888

8989
ASTERIX_SECTION = [
90-
("* Everywhere: This includes removing the 'Made in Reflex' badge for self hosted apps.", "", "", "", ""),
90+
("* Everywhere: This includes removing the 'Built with Reflex' badge for self hosted apps.", "", "", "", ""),
9191
("", "", "", "", ""),
9292
]
9393

0 commit comments

Comments
 (0)