Update urls to reflex.dev (#1572)

This commit is contained in:
Nikhil Rao 2023-08-11 17:55:03 -07:00 committed by GitHub
parent fbcfb51771
commit 6830ab40cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 10 additions and 10 deletions

View File

@ -60,7 +60,7 @@ representative at an online or offline event.
Instances of abusive, harassing, or otherwise unacceptable behavior may be Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported to the community leaders responsible for enforcement at 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 complaints will be reviewed and investigated promptly and fairly.
All community leaders are obligated to respect the privacy and security of the All community leaders are obligated to respect the privacy and security of the

View File

@ -2,7 +2,7 @@
## Getting started ## 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 ### Discussions

View File

@ -8,4 +8,4 @@
## Reporting a Vulnerability ## Reporting a Vulnerability
Please report any security vulnerabilities to contact@pynecone.io Please report any security vulnerabilities to contact@reflex.dev

View File

@ -5,7 +5,7 @@
**✨ 使用 Python 创建高效且可自订的网页应用程序,几秒钟内即可部署。** **✨ 使用 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) [![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) ![tests](https://github.com/pynecone-io/pynecone/actions/workflows/build.yml/badge.svg)
@ -155,8 +155,8 @@ def index():
我们用不同的组件像是 `center`, `vstack`, `input`, 和 `button` 来创建前端, 组件之间可以相互嵌入,来创建复杂的布局。 我们用不同的组件像是 `center`, `vstack`, `input`, 和 `button` 来创建前端, 组件之间可以相互嵌入,来创建复杂的布局。
并且你可以使用关键字参数来使用 CSS 的全部功能。 并且你可以使用关键字参数来使用 CSS 的全部功能。
Reflex 拥有 [60+ built-in components](https://pynecone.io/docs/library) 来帮助你开始创建应用程序。 Reflex 拥有 [60+ built-in components](https://reflex.dev/docs/library) 来帮助你开始创建应用程序。
我们正在积极添加组件, 但是你也可以简单的自己创建一些组件 [create your own components](https://pynecone.io/docs/advanced-guide/wrapping-react)。 我们正在积极添加组件, 但是你也可以简单的自己创建一些组件 [create your own components](https://reflex.dev/docs/advanced-guide/wrapping-react)。
### **状态** ### **状态**

View File

@ -4,8 +4,8 @@ version = "0.2.4"
description = "Web apps in pure Python." description = "Web apps in pure Python."
license = "Apache-2.0" license = "Apache-2.0"
authors = [ authors = [
"Nikhil Rao <nikhil@pynecone.io>", "Nikhil Rao <nikhil@reflex.dev>",
"Alek Petuskey <alek@pynecone.io>", "Alek Petuskey <alek@reflex.dev>",
] ]
readme = "README.md" readme = "README.md"
homepage = "https://reflex.dev" homepage = "https://reflex.dev"

View File

@ -322,7 +322,7 @@ class App(Base):
raise TypeError( raise TypeError(
"You may be trying to use an invalid Python function on a state var. " "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. " "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 ) from e
raise e raise e
@ -448,7 +448,7 @@ class App(Base):
else Admin( else Admin(
engine=Model.get_db_engine(), engine=Model.get_db_engine(),
title="Reflex Admin Dashboard", title="Reflex Admin Dashboard",
logo_url="https://pynecone.io/logo.png", logo_url="https://reflex.dev/Reflex.svg",
) )
) )