File tree Expand file tree Collapse file tree 5 files changed +32
-3
lines changed
Expand file tree Collapse file tree 5 files changed +32
-3
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff 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 ],
You can’t perform that action at this time.
0 commit comments