Skip to content

Latest commit

 

History

History
44 lines (32 loc) · 1.09 KB

File metadata and controls

44 lines (32 loc) · 1.09 KB
tags DevTools
description Integrate with GitHub to automate workflows and interact with your code repositories.

Connecting to Github

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.

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.

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)}",
    ),
)