-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: recreating hasura3/ from scratch (#2409)
* Cleaned out all the old sqlmesh stuff and starting over
- Loading branch information
Showing
38 changed files
with
1,858 additions
and
26,120 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
engine/build | ||
.env* | ||
/.env | ||
/.env.* |
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
Empty file.
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 |
---|---|---|
|
@@ -5,4 +5,4 @@ definition: | |
generator: | ||
rootPath: . | ||
includePaths: | ||
- metadata | ||
- metadata |
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,2 @@ | ||
FROM ghcr.io/hasura/v3-engine | ||
COPY ./build /md/ |
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 |
---|---|---|
|
@@ -3,5 +3,5 @@ version: v2 | |
definition: | ||
mode: | ||
noAuth: | ||
role: admin | ||
role: anonymous | ||
sessionVariables: {} |
2 changes: 1 addition & 1 deletion
2
.../hasura3/globals/compatibility-config.hml → ...globals/metadata/compatibility-config.hml
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,2 +1,2 @@ | ||
kind: CompatibilityConfig | ||
date: "2024-08-27" | ||
date: "2024-10-01" |
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
2 changes: 2 additions & 0 deletions
2
...hasura3/oso_subgraph/connector/oso_clickhouse/.hasura-connector/Dockerfile.oso_clickhouse
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,2 @@ | ||
FROM ghcr.io/hasura/ndc-clickhouse:v1.0.5 | ||
COPY ./ /etc/connector |
12 changes: 10 additions & 2 deletions
12
apps/hasura3/oso_subgraph/connector/oso_clickhouse/.hasura-connector/connector-metadata.yaml
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,21 +1,29 @@ | ||
packagingDefinition: | ||
type: PrebuiltDockerImage | ||
dockerImage: "ghcr.io/hasura/ndc-clickhouse:v1.0.2" | ||
dockerImage: "ghcr.io/hasura/ndc-clickhouse:v1.0.5" | ||
supportedEnvironmentVariables: | ||
- name: CLICKHOUSE_URL | ||
description: The ClickHouse connection URL | ||
defaultValue: "" | ||
required: true | ||
- name: CLICKHOUSE_USERNAME | ||
description: The ClickHouse connection username | ||
defaultValue: "" | ||
required: true | ||
- name: CLICKHOUSE_PASSWORD | ||
description: The ClickHouse connection password | ||
defaultValue: "" | ||
required: true | ||
commands: | ||
update: hasura-clickhouse update | ||
printSchemaAndCapabilities: hasura-clickhouse print-schema-and-capabilities | ||
cliPlugin: | ||
name: clickhouse | ||
version: "v1.0.2" | ||
version: "v1.0.5" | ||
dockerComposeWatch: | ||
- path: ./ | ||
target: /etc/connector | ||
action: sync+restart | ||
documentationPage: https://hasura.info/clickhouse-getting-started | ||
|
||
|
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
Oops, something went wrong.