Skip to content

Commit 83d6c28

Browse files
authored
fix docs links (#942)
* fix docs links * fix readme spelling * new reactpy.dev link * fix spelling error
1 parent 637c1b7 commit 83d6c28

File tree

4 files changed

+10
-14
lines changed

4 files changed

+10
-14
lines changed

Diff for: README.md

+7-11
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,7 @@
1717

1818
---
1919

20-
[ReactPy](https://reactpy.herokuapp.com) is a library for building user interfaces in Python without Javascript. ReactPy
21-
interfaces are made from components which look and behave similarly to this found in
22-
[ReactJS](https://reactjs.org/). Designed with simplicity in mind, ReactPy can be used
23-
by those without web development experience while also being powerful enough to grow
24-
with your ambitions.
20+
[ReactPy](https://reactpy.dev/) is a library for building user interfaces in Python without Javascript. ReactPy interfaces are made from components which look and behave similarly to those found in [ReactJS](https://reactjs.org/). Designed with simplicity in mind, ReactPy can be used by those without web development experience while also being powerful enough to grow with your ambitions.
2521

2622
<table align="center">
2723
<thead>
@@ -35,7 +31,7 @@ with your ambitions.
3531
<tbody>
3632
<tr>
3733
<td>
38-
<a href="">
34+
<a href="https://reactpy.dev/docs/guides/getting-started/installing-reactpy.html#officially-supported-servers">
3935
Flask, FastAPI, Sanic, Tornado
4036
</a>
4137
</td>
@@ -66,8 +62,8 @@ run(HelloWorld)
6662

6763
Follow the links below to find out more about this project.
6864

69-
- [Try it Now](https://mybinder.org/v2/gh/reactive-python/reactpy-jupyter/main?urlpath=lab/tree/notebooks/introduction.ipynb) - check out ReactPy in a Jupyter Notebook.
70-
- [Documentation](https://reactpy.herokuapp.com/) - learn how to install, run, and use ReactPy.
71-
- [Community Forum](https://github.com/reactive-python/reactpy/discussions) - ask questions, share ideas, and show off projects.
72-
- [Contributor Guide](https://reactpy.herokuapp.com/docs/developing-reactpy/contributor-guide.html) - see how you can help develop this project.
73-
- [Code of Conduct](https://github.com/reactive-python/reactpy/blob/main/CODE_OF_CONDUCT.md) - standards for interacting with this community.
65+
- [Try it Now](https://mybinder.org/v2/gh/reactive-python/reactpy-jupyter/main?urlpath=lab/tree/notebooks/introduction.ipynb) - check out ReactPy in a Jupyter Notebook.
66+
- [Documentation](https://reactpy.dev/) - learn how to install, run, and use ReactPy.
67+
- [Community Forum](https://github.com/reactive-python/reactpy/discussions) - ask questions, share ideas, and show off projects.
68+
- [Contributor Guide](https://reactpy.dev/docs/developing-reactpy/contributor-guide.html) - see how you can help develop this project.
69+
- [Code of Conduct](https://github.com/reactive-python/reactpy/blob/main/CODE_OF_CONDUCT.md) - standards for interacting with this community.

Diff for: docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@
163163

164164
# -- sphinxext.opengraph --
165165

166-
ogp_site_url = "https://reactpy-docs.herokuapp.com/"
166+
ogp_site_url = "https://reactpy.dev/"
167167
ogp_image = "https://raw.githubusercontent.com/reactive-python/reactpy/main/branding/png/reactpy-logo-padded.png"
168168
# We manually specify this below
169169
# ogp_description_length = 200

Diff for: docs/source/guides/getting-started/_static/embed-doc-ex.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
import { mountLayoutWithWebSocket } from "https://esm.sh/@reactpy/[email protected]";
44
mountLayoutWithWebSocket(
55
document.getElementById("reactpy-app"),
6-
"wss://reactpy-docs.herokuapp.com/_reactpy/stream?view_id=todo"
6+
"wss://reactpy.dev/_reactpy/stream?view_id=todo"
77
);
88
</script>

Diff for: docs/source/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ ReactPy
4040

4141
ReactPy is a library for building user interfaces in Python without Javascript. ReactPy
4242
interfaces are made from :ref:`components <Your First Components>` which look and behave
43-
similarly to this found in `ReactJS <https://reactjs.org/>`__. Designed with simplicity
43+
similarly to those found in `ReactJS <https://reactjs.org/>`__. Designed with simplicity
4444
in mind, ReactPy can be used by those without web development experience while also
4545
being powerful enough to grow with your ambitions.
4646

0 commit comments

Comments
 (0)