diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index d8a5158b5d..2530766953 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -60,7 +60,7 @@ representative at an online or offline event. Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at -opensource@pynecone.io. +opensource@reflex.dev. All complaints will be reviewed and investigated promptly and fairly. All community leaders are obligated to respect the privacy and security of the diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c9a8b51630..4f40713dac 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -2,7 +2,7 @@ ## Getting started -To navigate our codebase with confidence, see [Reflex Docs](https://pynecone.io/docs/getting-started/introduction) :confetti_ball:. +To navigate our codebase with confidence, see [Reflex Docs](https://reflex.dev/docs/getting-started/introduction) :confetti_ball:. ### Discussions diff --git a/SECURITY.md b/SECURITY.md index da3c5f0453..594ea0fa57 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -8,4 +8,4 @@ ## Reporting a Vulnerability -Please report any security vulnerabilities to contact@pynecone.io +Please report any security vulnerabilities to contact@reflex.dev diff --git a/docs/zh/zh_cn/README.md b/docs/zh/zh_cn/README.md index 32b57ce511..db76ba96a0 100644 --- a/docs/zh/zh_cn/README.md +++ b/docs/zh/zh_cn/README.md @@ -5,7 +5,7 @@ **✨ 使用 Python 创建高效且可自订的网页应用程序,几秒钟内即可部署。** -📑 [Docs](https://pynecone.io/docs/getting-started/introduction)   📱 [Component Library](https://pynecone.io/docs/library)   🖼️ [Gallery](https://pynecone.io/docs/gallery)   🛸 [Deployment](https://pynecone.io/docs/hosting/deploy) +📑 [Docs](https://reflex.dev/docs/getting-started/introduction)   📱 [Component Library](https://reflex.dev/docs/library)   🖼️ [Gallery](https://reflex.dev/docs/gallery)   🛸 [Deployment](https://reflex.dev/docs/hosting/deploy) [![PyPI version](https://badge.fury.io/py/reflex.svg)](https://badge.fury.io/py/reflex) ![tests](https://github.com/pynecone-io/pynecone/actions/workflows/build.yml/badge.svg) @@ -155,8 +155,8 @@ def index(): 我们用不同的组件像是 `center`, `vstack`, `input`, 和 `button` 来创建前端, 组件之间可以相互嵌入,来创建复杂的布局。 并且你可以使用关键字参数来使用 CSS 的全部功能。 -Reflex 拥有 [60+ built-in components](https://pynecone.io/docs/library) 来帮助你开始创建应用程序。 -我们正在积极添加组件, 但是你也可以简单的自己创建一些组件 [create your own components](https://pynecone.io/docs/advanced-guide/wrapping-react)。 +Reflex 拥有 [60+ built-in components](https://reflex.dev/docs/library) 来帮助你开始创建应用程序。 +我们正在积极添加组件, 但是你也可以简单的自己创建一些组件 [create your own components](https://reflex.dev/docs/advanced-guide/wrapping-react)。 ### **状态** diff --git a/pyproject.toml b/pyproject.toml index 3a0425e0a0..0497439a78 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,8 +4,8 @@ version = "0.2.4" description = "Web apps in pure Python." license = "Apache-2.0" authors = [ - "Nikhil Rao ", - "Alek Petuskey ", + "Nikhil Rao ", + "Alek Petuskey ", ] readme = "README.md" homepage = "https://reflex.dev" diff --git a/reflex/app.py b/reflex/app.py index 07ea1d134f..667deac3dc 100644 --- a/reflex/app.py +++ b/reflex/app.py @@ -322,7 +322,7 @@ def add_page( raise TypeError( "You may be trying to use an invalid Python function on a state var. " "When referencing a var inside your render code, only limited var operations are supported. " - "See the var operation docs here: https://pynecone.io/docs/state/vars " + "See the var operation docs here: https://reflex.dev/docs/state/vars/#var-operations" ) from e raise e @@ -448,7 +448,7 @@ def setup_admin_dash(self): else Admin( engine=Model.get_db_engine(), title="Reflex Admin Dashboard", - logo_url="https://pynecone.io/logo.png", + logo_url="https://reflex.dev/Reflex.svg", ) )