Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ The required permissions are:

At this point, you have the option to connect your Rill project to a GitHub Repository.

Navigating to the Status page and selecting `Connect to GitHub` will prompt you to login and create a repository for your project. If you've already created a repository, check the box 'I've created a GitHub Repo' and add the permissions for Rill to access the repository.
Navigating to the Settings page and selecting `Connect to GitHub` will prompt you to login and create a repository for your project. If you've already created a repository, check the box 'I've created a GitHub Repo' and add the permissions for Rill to access the repository.

:::info Check with your GitHub organization admin

Expand All @@ -86,7 +86,7 @@ Once the permissions to the repository have been confirmed and set, you can cont
![Select Repo](/img/deploy/existing-project/select-repo.png)


Once completed, you'll see the newly updated repository on the UI of your status page!
Once completed, you'll see the newly updated repository on the UI of your settings page!

![Finished](/img/deploy/existing-project/finished.png)

Expand Down Expand Up @@ -171,7 +171,7 @@ Your project can be accessed at: https://ui.rilldata.com/Rill_Learn/my-rill-tuto
Opening project in browser...
```

Once completed, you will see the following the in the status page. Note that the GitHub repository is already setup!
Once completed, you will see the following in the settings page. Note that the GitHub repository is already setup!

![Cli Upload](/img/deploy/existing-project/cli-upload.png)

Expand Down Expand Up @@ -231,7 +231,7 @@ rill deploy

### Enable Automatic deploys

Like running `rill project connect-github`, you will be [prompted to create a github repository](#deploy-project-with-repository). Once created, Rill will deploy the project. You can confirm that the project has the correct repository linked from the UI on the status page.
Like running `rill project connect-github`, you will be [prompted to create a github repository](#deploy-project-with-repository). Once created, Rill will deploy the project. You can confirm that the project has the correct repository linked from the UI on the settings page.


### Disable Automatic deploys
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/developers/tutorials/clone-a-project.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ curl https://rill.sh | sh


## Step 1: Clone the Repository
Depending on whether your project is synced to GitHub or not, select the correct clone method. If you are unsure, please see the Status page in the project.
Depending on whether your project is synced to GitHub or not, select the correct clone method. If you are unsure, please see the Settings page in the project.

### From GitHub
![Github Pushed Changes](/img/tutorials/rill-advanced/github-pushed-changes.png)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Each Rill Cloud project can be connected to a single GitHub repository. This ena

On first deployment, if you've deployed via the UI, your project will not be connected to a GitHub repository. You will need to manually connect it:

1. Navigate to your project's **Status** page
1. Navigate to your project's **Settings** page
2. Select **Connect to GitHub**
3. Follow the steps to connect your repository

Expand All @@ -23,7 +23,7 @@ On first deployment, if you've deployed via the UI, your project will not be con

In some cases, you will need to change the repository that your project is synced to:

1. Navigate to your project's **Status** page
1. Navigate to your project's **Settings** page
2. Select the dropdown next to the repository name
3. Choose **Disconnect** to remove the current connection

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,27 +12,48 @@ Projects can be connected to a GitHub repository for continuous deployment. See

## Project

![Project View](/img/manage/project-management/project-view.png)
![Project Home](<https://cdn.rilldata.com/docs/screenshots/guide/administration/project-home.png>)


A project is a single deployed instance from Rill Developer (or what we refer to as a Rill project). Once you have deployed a project to Rill Cloud, you can make changes to it via the CLI or via Rill Cloud.


### Checking deployment status
After deploying to Rill Cloud, if your projects are not quite ready to view yet, you will be navigating to the status page. Here you will be able to see your component's status and if there are any issues with loading or parsing.
## Checking deployment status
After deploying to Rill Cloud, you can navigate to the status page to monitor your project's health. The status page provides an overview of your deployment details, resource statuses, tables, and errors, with dedicated tabs for deeper inspection.

![Status](<https://cdn.rilldata.com/docs/screenshots/guide/administration/project-status-overview.png>)

### Resources

The Resources tab lists all project resources (sources, models, metrics views, explores, etc.) with their current reconciliation status. You can search, filter by resource type or status (OK, Error, Warn), and trigger a full refresh of all sources and models. Parse errors are also surfaced here. You can filter the type of resource and it's status to get quick information about the status of your project.

![Resources](<https://cdn.rilldata.com/docs/screenshots/guide/administration/project-status-error-filter.png>)


<!-- ### DAG Resource Viewer

Coming soon! -->

:::tip Refresh all source and models
You can select the `Refresh all sources and models` in the Status page or run a full project refresh.
:::

![Status](/img/manage/project-management/status.png)
### Tables

The Tables tab provides visibility into the tables in your OLAP database. Tables are split into two sections: **Models** (tables managed by Rill) and **External Tables** (tables that exist in the OLAP engine but are not managed by Rill). You can search and filter by type (table or view), view partition details for incremental models, and trigger model refreshes.

![Tables](<https://cdn.rilldata.com/docs/screenshots/guide/administration/project-status-tables.png>)


### Logs

The Logs tab streams live runtime logs from your deployment via a real-time connection. You can search log messages and filter by level (Debug, Info, Warn, Error) to quickly diagnose issues.

![Logs](<https://cdn.rilldata.com/docs/screenshots/guide/administration/project-status-logs.png>)



### Managing Project settings
You can also manage project objects in the settings page including public URLs (created in an explore dashboard) and environmental variables. For more information on managing variables, see [variables and credentials]( /guide/administration/project-settings/variables-and-credentials).

![Project Settings](/img/manage/project-management/project-settings.png)

![Project Settings](<https://cdn.rilldata.com/docs/screenshots/guide/administration/project-settings-general.png>)

## Managing Rill project from CLI
Managing a project includes the project itself and all components or resources that belong to the project. Via the CLI, you can make changes to the project's properties such as description, public access, etc. Run `rill project -h` for an overview of available commands.
Expand Down
Loading