Skip to content

Commit

Permalink
Update urls to reflex.dev (#1572)
Browse files Browse the repository at this point in the history
  • Loading branch information
picklelo committed Aug 12, 2023
1 parent fbcfb51 commit 6830ab4
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
6 changes: 3 additions & 3 deletions docs/zh/zh_cn/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)

### **状态**

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ version = "0.2.4"
description = "Web apps in pure Python."
license = "Apache-2.0"
authors = [
"Nikhil Rao <nikhil@pynecone.io>",
"Alek Petuskey <alek@pynecone.io>",
"Nikhil Rao <nikhil@reflex.dev>",
"Alek Petuskey <alek@reflex.dev>",
]
readme = "README.md"
homepage = "https://reflex.dev"
Expand Down
4 changes: 2 additions & 2 deletions reflex/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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",
)
)

Expand Down

0 comments on commit 6830ab4

Please sign in to comment.