Skip to content

Commit d40f583

Browse files
Tom GotsmanTom Gotsman
authored andcommitted
github integration ai docs
1 parent 6500010 commit d40f583

File tree

5 files changed

+32
-3
lines changed

5 files changed

+32
-3
lines changed
2.96 MB
Loading
301 KB
Loading

docs/ai_builder/integrations.md

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,32 @@
1-
# github.md
1+
# Connecting to Github
2+
3+
```python exec
4+
import reflex as rx
5+
from reflex_image_zoom import image_zoom
6+
```
7+
8+
The Github integration is important to make sure that you don't lose your progress. It also allows you to revert to previous versions of your app.
9+
10+
11+
```python eval
12+
rx.image(
13+
src="/ai_builder/connecting_to_github.gif",
14+
height="auto",
15+
padding_bottom="2rem",
16+
)
17+
```
18+
19+
The GitHub integration allows you to:
20+
21+
- Save your app progress
22+
- Work on your code locally and push your local changes back to Reflex.Build
23+
24+
25+
## Github Commit History
26+
27+
The commit history is a great way to see the changes that you have made to your app. You can also revert to previous versions of your app from here.
28+
29+
```python eval
30+
image_zoom(rx.image(src="/ai_builder/github_commit_history.png"))
31+
```
32+

pcweb/components/docpage/sidebar/sidebar_items/ai.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ def get_sidebar_items_ai_builder_overview():
3535
create_item(
3636
"Integrations",
3737
children=[
38-
ai_builder.integrations,
3938
ai_builder.integrations.github,
4039
ai_builder.integrations.database,
4140
],

0 commit comments

Comments
 (0)