forked from airbytehq/airbyte
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from airbytehq/master
merge
- Loading branch information
Showing
11,966 changed files
with
992,542 additions
and
451,400 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
// For format details, see https://aka.ms/devcontainer.json. For config options, see the | ||
{ | ||
"name": "Java Development DevContainer (Generic)", | ||
"image": "mcr.microsoft.com/devcontainers/java:0-17", | ||
"features": { | ||
"ghcr.io/devcontainers/features/docker-in-docker": {}, | ||
"ghcr.io/devcontainers/features/java:1": { | ||
"installGradle": true, | ||
"version": "latest", | ||
"jdkDistro": "open", | ||
"gradleVersion": "7.5.1" | ||
}, | ||
// Python needed for `airbyte-ci` CLI | ||
"ghcr.io/devcontainers/features/python:1": { | ||
"installGradle": true, | ||
"version": "3.10", | ||
"installTools": true | ||
}, | ||
"ghcr.io/devcontainers-contrib/features/poetry:2": {} | ||
}, | ||
// Deterministic order reduces cache busting | ||
"overrideFeatureInstallOrder": [ | ||
"ghcr.io/devcontainers/features/docker-in-docker", | ||
"ghcr.io/devcontainers/features/java", | ||
"ghcr.io/devcontainers/features/python", | ||
"ghcr.io/devcontainers-contrib/features/poetry" | ||
], | ||
// Configure tool-specific properties. | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
// Python extensions: | ||
"charliermarsh.ruff", | ||
"matangover.mypy", | ||
"ms-python.python", | ||
"ms-python.vscode-pylance", | ||
// Toml support | ||
"tamasfe.even-better-toml", | ||
// Yaml and JSON Schema support: | ||
"redhat.vscode-yaml", | ||
// Contributing: | ||
"GitHub.vscode-pull-request-github", | ||
// General AI Auto-Complete (Python and Java) | ||
"VisualStudioExptTeam.vscodeintellicode", | ||
// Gradle and Java | ||
"redhat.java", | ||
"vscjava.vscode-gradle", | ||
"vscjava.vscode-java-debug", | ||
"vscjava.vscode-java-test", | ||
"vscjava.vscode-java-dependency" | ||
], | ||
"settings": { | ||
"extensions.ignoreRecommendations": true, | ||
"git.openRepositoryInParentFolders": "always" | ||
} | ||
} | ||
}, | ||
// Mark the root directory as 'safe' for git. | ||
"initializeCommand": "git config --add safe.directory /workspaces/airbyte", | ||
// Install Gradle, `airbyte-ci` CLI, and Dagger (installed via airbyte-ci --help) | ||
"postCreateCommand": "make tools.airbyte-ci-dev.install", | ||
"containerEnv": { | ||
// Deterministic Poetry virtual env location: `./.venv` | ||
"POETRY_VIRTUALENVS_IN_PROJECT": "true" | ||
} | ||
// Override to change the directory that the IDE opens by default: | ||
// "workspaceFolder": "/workspaces/airbyte" | ||
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. | ||
// "remoteUser": "root" | ||
} |
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 |
---|---|---|
@@ -0,0 +1,65 @@ | ||
// For format details, see https://aka.ms/devcontainer.json. For config options, see the | ||
{ | ||
"name": "Python Development DevContainer (Generic)", | ||
|
||
"image": "mcr.microsoft.com/devcontainers/python:1-3.10", | ||
"features": { | ||
"ghcr.io/devcontainers/features/docker-in-docker": {}, | ||
"ghcr.io/devcontainers/features/python:1": { | ||
"installGradle": true, | ||
"version": "3.10", | ||
"installTools": true | ||
}, | ||
"ghcr.io/devcontainers-contrib/features/poetry:2": {} | ||
}, | ||
|
||
// Deterministic order reduces cache busting | ||
"overrideFeatureInstallOrder": [ | ||
"ghcr.io/devcontainers/features/docker-in-docker", | ||
"ghcr.io/devcontainers/features/python", | ||
"ghcr.io/devcontainers-contrib/features/poetry" | ||
], | ||
|
||
// Configure tool-specific properties. | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
// Python extensions: | ||
"charliermarsh.ruff", | ||
"matangover.mypy", | ||
"ms-python.python", | ||
"ms-python.vscode-pylance", | ||
|
||
// Toml support | ||
"tamasfe.even-better-toml", | ||
|
||
// Yaml and JSON Schema support: | ||
"redhat.vscode-yaml", | ||
|
||
// Contributing: | ||
"GitHub.vscode-pull-request-github" | ||
], | ||
"settings": { | ||
"extensions.ignoreRecommendations": true, | ||
"git.openRepositoryInParentFolders": "always" | ||
} | ||
} | ||
}, | ||
|
||
// Mark the root directory as 'safe' for git. | ||
"initializeCommand": "git config --add safe.directory /workspaces/airbyte", | ||
|
||
// Setup airbyte-ci on the container: | ||
"postCreateCommand": "make tools.airbyte-ci-dev.install", | ||
|
||
"containerEnv": { | ||
// Deterministic Poetry virtual env location: `./.venv` | ||
"POETRY_VIRTUALENVS_IN_PROJECT": "true" | ||
} | ||
|
||
// Override to change the directory that the IDE opens by default: | ||
// "workspaceFolder": "/workspaces/airbyte" | ||
|
||
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. | ||
// "remoteUser": "root" | ||
} |
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
Validating CODEOWNERS rules …
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
Oops, something went wrong.