-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adapt docs for refactored examples (#2505)
* Adapt docs for refactored examples * Make Github steps simpler * Fix broken link in sources tutorial
- Loading branch information
1 parent
33785df
commit fb1bec9
Showing
12 changed files
with
68 additions
and
189 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
--- | ||
title: Get started | ||
sidebar_label: Get started | ||
sidebar_position: 10 | ||
--- | ||
|
||
This tutorial is a step by step guide that will help you install Rill, ingest source data, and deploy a dashboard online. | ||
|
||
## Install Rill | ||
|
||
Install `rill` on Mac or Linux ([WSL](https://learn.microsoft.com/en-us/windows/wsl/install) for Windows users) using the installation script: | ||
|
||
``` | ||
curl -s https://cdn.rilldata.com/install.sh | bash | ||
``` | ||
|
||
## Create your project | ||
|
||
Start a new Rill project: | ||
|
||
``` | ||
rill start my-rill-project | ||
``` | ||
|
||
The Rill web app runs locally at `http://localhost:9009` and will create code files in the `my-rill-project` directory. | ||
|
||
## Load and transform data | ||
|
||
On the welcome screen, initialize an example project or load up Rill with your own data. Use the app to develop data models and dashboards. | ||
|
||
## Deploy your dashboard | ||
|
||
You can deploy any Rill project with a dashboard to an authenticated hosted endpoint: | ||
|
||
1. Create a new Github repository on [https://github.com/new](https://github.com/new) and push your `my-rill-project` directory to it | ||
2. Setup continuous deployment from Github to Rill Cloud: | ||
``` | ||
cd my-rill-project | ||
rill deploy | ||
``` | ||
## Share your dashboard | ||
Projects on Rill Cloud are private by default. To invite others to explore your project, run: | ||
``` | ||
rill user add | ||
``` | ||
## We want to hear from you | ||
You can file an issue [on GitHub](https://github.com/rilldata/rill-developer/issues/new/choose) or reach us in our [Discord channel](https://bit.ly/3unvA05). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
position: 20 | ||
position: 10 | ||
label: Project files | ||
collapsible: false | ||
collapsed: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters