diff --git a/website/snippets/available-beta-banner.md b/website/snippets/available-beta-banner.md deleted file mode 100644 index 15d365a84b1..00000000000 --- a/website/snippets/available-beta-banner.md +++ /dev/null @@ -1,3 +0,0 @@ -:::info Beta feature -This feature is currently in beta and subject to change. If you are interested in getting access to the beta, please [contact us](mailto:support@getdbt.com). -::: diff --git a/website/snippets/sl-considerations-banner.md b/website/snippets/sl-considerations-banner.md deleted file mode 100644 index 33cfb5edac5..00000000000 --- a/website/snippets/sl-considerations-banner.md +++ /dev/null @@ -1,8 +0,0 @@ -:::caution Considerations - -Some important considerations to know about using the dbt Semantic Layer during the Public Preview: - -- Support for Snowflake data platform only (_additional data platforms coming soon_) -- Support for the deployment environment only (_development experience coming soon_) - -::: diff --git a/website/snippets/test-snippet.md b/website/snippets/test-snippet.md deleted file mode 100644 index c1de326aa7a..00000000000 --- a/website/snippets/test-snippet.md +++ /dev/null @@ -1,8 +0,0 @@ ---- ---- - -### Header 2 - -Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam fermentum porttitor dui, id scelerisque enim scelerisque at. Proin imperdiet sem sed magna ornare, sit amet rutrum ligula vehicula. Aenean eget magna placerat, dictum velit sed, dapibus quam. Maecenas lectus tellus, dictum semper gravida vel, feugiat vitae nibh. Vestibulum nec lorem nibh. Fusce nisi felis, tincidunt ac scelerisque ut, aliquam in eros. Praesent euismod dolor ac lacinia laoreet. Phasellus orci orci, scelerisque vitae mollis id, consectetur ut libero. Aenean diam leo, tempor ut vulputate in, laoreet id ipsum. Quisque gravida et ex id eleifend. Etiam ultricies erat diam. Morbi hendrerit, ligula non aliquam tempus, erat elit suscipit quam, eu cursus quam nisi sit amet dui. Cras iaculis risus vel enim tempor molestie. - -Curabitur a porttitor odio. Curabitur sit amet tristique ante. Ut eleifend, erat eget imperdiet accumsan, quam diam sodales dolor, vulputate consequat lacus felis non sapien. Nam et nunc sed diam congue rutrum nec non massa. Nam eget fermentum sem. Nam ac imperdiet massa. Phasellus a elementum dui. diff --git a/website/snippets/tutorial-create-new-dbt-cloud-account.md b/website/snippets/tutorial-create-new-dbt-cloud-account.md deleted file mode 100644 index bdde874d0c9..00000000000 --- a/website/snippets/tutorial-create-new-dbt-cloud-account.md +++ /dev/null @@ -1,10 +0,0 @@ -Let's start this section by creating a dbt Cloud account if you haven't already. - -1. Navigate to [dbt Cloud](https://cloud.getdbt.com). -2. If you don't have a dbt Cloud account, create a new one, and verify your account via email. -3. If you already have a dbt Cloud account, you can create a new project from your existing account: - 1. Click the gear icon in the top-right, then click **Projects**. - 2. Click **+ New Project**. -4. You've arrived at the "Setup a New Project" page. -5. Type "Analytics" in the dbt Project Name field. You will be able to rename this project later. -6. Click **Continue**. \ No newline at end of file diff --git a/website/snippets/tutorial-initiate-project.md b/website/snippets/tutorial-initiate-project.md deleted file mode 100644 index 008b6bdf487..00000000000 --- a/website/snippets/tutorial-initiate-project.md +++ /dev/null @@ -1,44 +0,0 @@ -Now that you have a repository configured, you can initialize your project and start development in dbt Cloud: - -1. Click **Develop** from the upper left. It might take a few minutes for your project to spin up for the first time as it establishes your git connection, clones your repo, and tests the connection to the warehouse. -2. Above the file tree to the left, click **Initialize your project**. This builds out your folder structure with example models. -3. Make your initial commit by clicking **Commit**. Use the commit message `initial commit`. This creates the first commit to your managed repo and allows you to open a branch where you can add new dbt code. -4. Now you should be able to **directly query data from your warehouse** and **execute dbt run**. Paste your following warehouse-specific code in the IDE: - - - -
- -```sql -select * from `dbt-tutorial.jaffle_shop.customers` -``` - -
- -
- -```sql -select * from default.jaffle_shop_customers -``` - -
- -
- -```sql -select * from jaffle_shop.customers -``` - -
- -
- -```sql -select * from raw.jaffle_shop.customers -``` - -
- -
- -- In the command line bar at the bottom, type `dbt run` and click **Enter**. We will explore what happens in the next section of the tutorial.