Back to Reflex

Connecting to Github

docs/ai_builder/features/connect_to_github.md

0.9.2a2993 B
Original Source

Connecting to Github

python
import reflex as rx

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.

python
rx.el.div(
    rx.image(
        src="https://web.reflex-assets.dev/ai_builder/connecting_to_github.avif",
        class_name="rounded-md h-auto",
        border=f"0.81px solid {rx.color('slate', 5)}",
    ),
)

The GitHub integration allows you to:

  • Save your app progress
  • Work on your code locally and push your local changes back to Reflex.Build

Github Commit History

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.

python
rx.el.div(
    rx.image(
        src="https://web.reflex-assets.dev/ai_builder/github_commit_history.avif",
        class_name="rounded-md h-auto",
        border=f"0.81px solid {rx.color('slate', 5)}",
    ),
)