You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# VERSION format is major.minor.patch-post where major, minor, patch and post are integer numbers
2
+
# bump post to deploy to the current live Release, rollback to previous post version is not available
3
+
# bump patch or minor to deploy a new Release and auto-promote it to live. Add TB_AUTO_PROMOTE=0 to create the Release in preview status
4
+
# bump major to deploy a new Release in preview status
5
+
VERSION=0.0.0
6
+
7
+
8
+
9
+
##########
10
+
# OPTIONAL env vars
11
+
# Deploy a new Release in preview status (default is 1)
12
+
# TB_AUTO_PROMOTE=0
13
+
14
+
# Check if deploy requires backfilling on preview (default is 1)
15
+
# TB_CHECK_BACKFILL_REQUIRED=0
16
+
17
+
# Force old Releases deletion on promote (default is 0)
18
+
# Setting it to 1 will remove oldest rollback Releases even when some resource is still in use
19
+
# TB_FORCE_REMOVE_OLDEST_ROLLBACK=0
20
+
21
+
# Don't print CLI version warning message if there's a new available version
22
+
# TB_VERSION_WARNING=0
23
+
24
+
# Skip regression tests
25
+
# TB_SKIP_REGRESSION=0
26
+
27
+
# Use `OBFUSCATE_REGEX_PATTERN` and `OBFUSCATE_PATTERN_SEPARATOR` environment variables to define a regex pattern and a separator (in case of a single string with multiple regex) to obfuscate secrets in the CLI output.
28
+
# OBFUSCATE_REGEX_PATTERN="https://(www\.)?[^/]+||^Follow these instructions =>"
Copy file name to clipboardExpand all lines: iterate_snowflake/README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,8 +7,8 @@ First of all, you must connect your Tinybird workspace with your Git repository
7
7
- Create the Snowflake Connection in your main tinybird workspace using Tinybird CLI, as explain in the [iteration documentation](https://www.tinybird.co/docs/ingest/snowflake). Snowflake connections reside always in the main branch.
8
8
- Create a new git branch
9
9
- Create a new Snowflake .datasource data file in the branch, as in the example PR. You shouldn't need fixtures as the Data Source will be populated from the connection, but you can add fixtures and/or tests if needed.
10
-
- For information abount Snowflake options read the [connector documentation](https://www.tinybird.co/docs/ingest/snowflake)
11
-
- Commit an create a new PR/MR from the branch to `main`
10
+
- For information about Snowflake options read the [connector documentation](https://www.tinybird.co/docs/ingest/snowflake)
11
+
- Commit your code and create a new PR/MR from the branch to `main`
12
12
- Wait for CI. You can check in the temporary workspace branch (automatically created and named like `tmp_ci_*`) that everything works as expected.
13
13
- Merge and wait for CD. Now you should have your Data Source in the main workspace, using the connection, and the temporary CI branch will be deleted.
14
14
@@ -19,7 +19,7 @@ First of all, you must connect your Tinybird workspace with your Git repository
19
19
20
20
- Create another git branch
21
21
- Add the new column to the schema and query
22
-
- Commit and create an ew PR from the branch to `main`
22
+
- Commit your code and create an ew PR from the branch to `main`
23
23
- Wait for CI to finish. You can check in the temporary workspace branch (automatically created and named like `tmp_ci_*`) that everything works as expected.
24
24
- Merge and wait for CD. Now you should have your Data Source updated in the main workspace, using the connection, and the temporary CI branch will be deleted.
25
25
@@ -29,7 +29,7 @@ First of all, you must connect your Tinybird workspace with your Git repository
29
29
30
30
- Create another git branch
31
31
- Remove the .datasource data file
32
-
- Commit and create an ew PR from the branch to `main`
32
+
- Commit your code and create an ew PR from the branch to `main`
33
33
- Wait for CI to finish. You can check in the temporary workspace branch (automatically created and named like `tmp_ci_*`) that everything works as expected.
34
34
- Merge and wait for CD. Now you should have your Data Source updated in the main workspace, using the connection, and the temporary CI branch will be deleted.
0 commit comments