Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/ai_builder/features/connect_to_git_providers.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: Connect Reflex Build to GitLab, Bitbucket, or any Git remote using

# Connecting to Git Providers

Besides the [GitHub integration](/docs/ai/features/connect-to-github/), Reflex Build can sync to any Git remote, including GitLab, Bitbucket, a self-hosted server, or an existing GitHub repository. You connect it with a repository URL and a fine-grained access token, then push and pull the same way you would with GitHub.
Besides the [GitHub integration](/docs/ai/features/connect-to-github/), Reflex Build can sync to any Git remote, including GitLab, Bitbucket, Azure DevOps, a self-hosted server, or an existing GitHub repository. You connect it with a repository URL and a fine-grained access token, then push and pull the same way you would with GitHub.

## What You Need

Expand Down
2 changes: 1 addition & 1 deletion docs/ai_builder/features/connect_to_github.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ When you connect a Build app to GitHub, Reflex Build creates a Git repository fo
- If the `reflex-build` app is installed on a **GitHub organization**, the repository is created inside that organization.
- Otherwise, the repository is created under your **personal GitHub account**.

New repositories use the `main` branch and are private, unless you make them public when connecting.
New repositories use the `main` branch. Repository visibility depends on your plan: on **Pro** you choose public or private when connecting; on the **Free** plan new repositories are public; on **Enterprise** they are always private.

## Pushing and Pulling Changes

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,15 @@ Database (mydatabase) - Target database name
- Generates SQLAlchemy models
- Makes schema available to the AI for queries

## Connecting a Private or Remote Database

Reflex Build connects to your database from its cloud sandbox, so the database must be reachable over the internet. A few tips for remote connections:

- **Use an IPv4-reachable host or a connection pooler.** IPv6-only hosts may not be reachable from the sandbox; most managed providers offer a pooler endpoint that works.
- **Allowlisting:** on **Enterprise** plans, database traffic can be routed through a static egress IP that you allowlist on your database's firewall.

You provide a single connection string (or the individual fields), and Reflex Build derives the environment variables your app connects with — `REFLEX_DB_URL` and its async counterpart `REFLEX_ASYNC_DB_URL` — automatically.


```md alert
# NoSQL Databases
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
tags: Data Infrastructure
description: Connect to Snowflake to query and analyze data in your Snowflake warehouse.
---
# Snowflake

Snowflake is a cloud-based data warehousing platform that enables users to store, manage, and analyze large volumes of data. It provides a scalable and flexible architecture that separates storage and compute resources, allowing for efficient data processing and querying.
Expand Down
Loading