-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨Source Plausible: Make Connector Compatible with Builder (#38660)
Co-authored-by: Alexandre Girard <[email protected]>
- Loading branch information
1 parent
2dc3288
commit 5297329
Showing
17 changed files
with
186 additions
and
181 deletions.
There are no files selected for viewing
6 changes: 0 additions & 6 deletions
6
airbyte-integrations/connectors/source-plausible/.dockerignore
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
airbyte-integrations/connectors/source-plausible/BOOTSTRAP.md
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
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,3 +1,3 @@ | ||
# | ||
# Copyright (c) 2023 Airbyte, Inc., all rights reserved. | ||
# Copyright (c) 2024 Airbyte, Inc., all rights reserved. | ||
# |
2 changes: 1 addition & 1 deletion
2
airbyte-integrations/connectors/source-plausible/integration_tests/__init__.py
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,3 +1,3 @@ | ||
# | ||
# Copyright (c) 2023 Airbyte, Inc., all rights reserved. | ||
# Copyright (c) 2024 Airbyte, Inc., all rights reserved. | ||
# |
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
30 changes: 17 additions & 13 deletions
30
airbyte-integrations/connectors/source-plausible/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,31 +1,35 @@ | ||
data: | ||
registries: | ||
oss: | ||
enabled: true | ||
cloud: | ||
enabled: false | ||
remoteRegistries: | ||
pypi: | ||
enabled: true | ||
packageName: airbyte-source-plausible | ||
connectorBuildOptions: | ||
# Please update to the latest version of the connector base image. | ||
# https://hub.docker.com/r/airbyte/python-connector-base | ||
# Please use the full address with sha256 hash to guarantee build reproducibility. | ||
baseImage: docker.io/airbyte/python-connector-base:1.2.0@sha256:c22a9d97464b69d6ef01898edf3f8612dc11614f05a84984451dde195f337db9 | ||
connectorSubtype: api | ||
connectorType: source | ||
definitionId: 603ba446-3d75-41d7-92f3-aba901f8b897 | ||
dockerImageTag: 0.1.1 | ||
dockerImageTag: 0.1.2 | ||
dockerRepository: airbyte/source-plausible | ||
githubIssueLabel: source-plausible | ||
icon: plausible.svg | ||
license: MIT | ||
name: Plausible | ||
remoteRegistries: | ||
pypi: | ||
enabled: true | ||
packageName: airbyte-source-plausible | ||
registries: | ||
cloud: | ||
enabled: false | ||
oss: | ||
enabled: true | ||
releaseDate: 2022-10-30 | ||
releaseStage: alpha | ||
supportLevel: community | ||
documentationUrl: https://docs.airbyte.com/integrations/sources/plausible | ||
tags: | ||
- language:python | ||
- cdk:low-code | ||
ab_internal: | ||
sl: 100 | ||
ql: 100 | ||
supportLevel: community | ||
connectorBuildOptions: | ||
baseImage: docker.io/airbyte/python-connector-base:1.2.0@sha256:c22a9d97464b69d6ef01898edf3f8612dc11614f05a84984451dde195f337db9 | ||
metadataSpecVersion: "1.0" |
31 changes: 15 additions & 16 deletions
31
airbyte-integrations/connectors/source-plausible/poetry.lock
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] | |
build-backend = "poetry.core.masonry.api" | ||
|
||
[tool.poetry] | ||
version = "0.1.1" | ||
version = "0.1.2" | ||
name = "source-plausible" | ||
description = "Source implementation for Plausible." | ||
authors = [ "Airbyte <[email protected]>",] | ||
|
@@ -12,8 +12,7 @@ readme = "README.md" | |
documentation = "https://docs.airbyte.com/integrations/sources/plausible" | ||
homepage = "https://airbyte.com" | ||
repository = "https://github.com/airbytehq/airbyte" | ||
[[tool.poetry.packages]] | ||
include = "source_plausible" | ||
packages = [ { include = "source_plausible" }, {include = "main.py" } ] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.9,<3.12" | ||
|
1 change: 0 additions & 1 deletion
1
airbyte-integrations/connectors/source-plausible/requirements.txt
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
airbyte-integrations/connectors/source-plausible/source_plausible/__init__.py
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.