├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug.yml │ └── config.yml ├── actions │ └── test-backend │ │ └── action.yml ├── pull_request_template.yml ├── templates │ ├── certificate.yaml │ └── website.yaml └── workflows │ ├── build-swiple-website.yml │ ├── ci-cd-pr.yml │ ├── ci-cd-production.yml │ ├── deploy-swiple-website.yml │ ├── first-interaction.yml │ ├── github-repo-stats.yml │ ├── lint.yml │ ├── publish-docker-images.yml │ ├── stale-issue-pr.yml │ └── test.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── Makefile ├── README.md ├── SECURITY.md ├── backend ├── Dockerfile ├── app │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── api_v1 │ │ │ ├── __init__.py │ │ │ ├── auth_router.py │ │ │ ├── endpoints │ │ │ │ ├── __init__.py │ │ │ │ ├── action.py │ │ │ │ ├── auth.py │ │ │ │ ├── dataset.py │ │ │ │ ├── datasource.py │ │ │ │ ├── destination.py │ │ │ │ ├── expectation.py │ │ │ │ ├── health.py │ │ │ │ ├── introspect.py │ │ │ │ ├── metrics.py │ │ │ │ ├── schedule.py │ │ │ │ ├── scheduler.py │ │ │ │ ├── task.py │ │ │ │ ├── user.py │ │ │ │ └── validation.py │ │ │ ├── scheduler_router.py │ │ │ └── swiple_router.py │ │ ├── exception_handlers.py │ │ └── shortcuts.py │ ├── celery_worker.py │ ├── constants.py │ ├── core │ │ ├── __init__.py │ │ ├── actions │ │ │ ├── __init__.py │ │ │ ├── action_dispatcher.py │ │ │ ├── base.py │ │ │ ├── email_action.py │ │ │ ├── microsoft_teams_action.py │ │ │ ├── microsoft_teams_template.json │ │ │ ├── ops_genie_action.py │ │ │ ├── pager_duty_action.py │ │ │ └── slack_action.py │ │ ├── exceptions.py │ │ ├── expectations.py │ │ ├── runner.py │ │ ├── sample.py │ │ ├── schedulers │ │ │ ├── __init__.py │ │ │ ├── ap_scheduler.py │ │ │ ├── scheduler.py │ │ │ └── scheduler_interface.py │ │ ├── security.py │ │ └── users.py │ ├── db │ │ ├── __init__.py │ │ └── client.py │ ├── main.py │ ├── migrations │ │ ├── __init__.py │ │ ├── env.py │ │ ├── migration_template_painless.py │ │ ├── migration_template_python.py │ │ └── versions │ │ │ ├── 1_datasources.py │ │ │ ├── 2_datasets.py │ │ │ ├── 3_validations.py │ │ │ ├── 4_users.py │ │ │ ├── 5_actions.py │ │ │ ├── 6_destinations.py │ │ │ └── 7_expectations.py │ ├── models │ │ ├── __init__.py │ │ ├── action.py │ │ ├── base_model.py │ │ ├── dataset.py │ │ ├── datasource.py │ │ ├── destinations │ │ │ ├── __init__.py │ │ │ ├── destination.py │ │ │ ├── email.py │ │ │ ├── microsoft_teams.py │ │ │ ├── ops_genie.py │ │ │ ├── pager_duty.py │ │ │ └── slack.py │ │ ├── expectation.py │ │ ├── runner.py │ │ ├── schedule.py │ │ ├── task.py │ │ ├── types.py │ │ ├── users.py │ │ └── validation.py │ ├── opensearch.yaml │ ├── repositories │ │ ├── __init__.py │ │ ├── action.py │ │ ├── base.py │ │ ├── dataset.py │ │ ├── datasource.py │ │ ├── destination.py │ │ ├── expectation.py │ │ ├── task.py │ │ ├── user.py │ │ └── validation.py │ ├── sample_data │ │ ├── create_tables.sql │ │ ├── data │ │ │ ├── customer.csv │ │ │ ├── lineitem.csv │ │ │ ├── nation.csv │ │ │ ├── orders.csv │ │ │ └── part.csv │ │ ├── load_data.py │ │ └── snowflake.sql │ ├── scripts │ │ ├── __init__.py │ │ ├── create_admin_user.py │ │ ├── generate_secret_key.py │ │ ├── manual_integration_test.py │ │ └── setup_opensearch.py │ ├── settings.py │ ├── utils.py │ └── worker │ │ ├── __init__.py │ │ ├── app.py │ │ ├── backends │ │ ├── __init__.py │ │ └── opensearch.py │ │ └── tasks │ │ ├── __init__.py │ │ ├── suggestions.py │ │ └── validation.py ├── main.py ├── poetry.lock ├── pyproject.toml └── tests │ ├── __init__.py │ ├── conftest.py │ ├── data.py │ ├── fake_opensearch.py │ ├── test_api_v1_dataset.py │ ├── test_api_v1_datasource.py │ ├── test_api_v1_expectation.py │ ├── test_api_v1_health.py │ ├── test_api_v1_task.py │ ├── test_api_v1_validation.py │ ├── test_main.py │ └── test_repositories_datasource.py ├── docker-compose-dbs.yaml ├── docker-compose-non-dev.yaml ├── docker-compose.yaml ├── docker ├── .env ├── .env-local └── .env-non-dev ├── docs ├── .gitignore ├── README.md ├── babel.config.js ├── docs │ ├── contributing.md │ ├── faq.md │ ├── getting-started │ │ ├── _category_.json │ │ ├── quick-start.md │ │ └── start-developing.md │ ├── how-to-guides │ │ ├── _category_.json │ │ ├── actions │ │ │ ├── _category_.json │ │ │ ├── email.md │ │ │ ├── index.md │ │ │ ├── microsoft-teams.md │ │ │ ├── ops-genie.md │ │ │ ├── pager-duty.md │ │ │ └── slack.md │ │ ├── authentication.md │ │ ├── how-to-update-SECRET_KEY.md │ │ ├── overriding-env-variables.md │ │ ├── scheduling-validations.md │ │ └── secrets-manager.md │ ├── index.mdx │ └── tutorials │ │ ├── _category_.json │ │ └── start-monitoring-your-data.md ├── docusaurus.config.js ├── package-lock.json ├── package.json ├── sidebars.js ├── src │ ├── components │ │ ├── Carousel │ │ │ └── index.js │ │ ├── Expectations │ │ │ ├── index.js │ │ │ ├── jsonSchema.js │ │ │ └── styles.module.css │ │ ├── HeroGradient │ │ │ ├── index.js │ │ │ └── styles.module.css │ │ ├── HomepageFeatures │ │ │ ├── index.js │ │ │ └── styles.module.css │ │ ├── Pricing │ │ │ └── index.js │ │ ├── StripePricingTable │ │ │ ├── index.js │ │ │ └── loadStripeScript.js │ │ └── SupportedDatabases │ │ │ ├── index.js │ │ │ └── styles.module.css │ ├── css │ │ └── custom.css │ └── pages │ │ ├── index.js │ │ ├── index.module.css │ │ └── markdown-page.md └── static │ ├── .nojekyll │ └── img │ ├── actions │ ├── email │ │ ├── example.png │ │ ├── step-1.png │ │ ├── step-2.png │ │ ├── step-3.png │ │ ├── step-4.png │ │ ├── step-5.png │ │ └── step-6.png │ ├── microsoftteams │ │ ├── example.png │ │ ├── step-1.png │ │ ├── step-2.png │ │ ├── step-3.png │ │ ├── step-4.png │ │ ├── step-5.png │ │ ├── step-6.png │ │ └── swiple-ms-teams-connector.png │ ├── opsgenie │ │ ├── example.png │ │ ├── step-1.png │ │ ├── step-2.png │ │ ├── step-3.png │ │ ├── step-5.png │ │ └── step-6.png │ ├── pagerduty │ │ ├── example.png │ │ ├── step-1.png │ │ ├── step-2.png │ │ ├── step-3.png │ │ ├── step-4.png │ │ ├── step-5.png │ │ └── step-6.png │ └── slack │ │ ├── example.png │ │ ├── step-2.png │ │ ├── step-3.png │ │ ├── step-4.png │ │ ├── step-5.png │ │ ├── step-6.png │ │ ├── step-7.png │ │ ├── step-8.png │ │ └── step-9.png │ ├── automated-profiling.svg │ ├── create-action.png │ ├── create-destination.png │ ├── create-schedule.mp4 │ ├── creating_a_schedule │ ├── fill-in-schedule.png │ ├── navigate-to-datasets.png │ ├── note-next-runs.png │ ├── schedule-list.png │ ├── select-dataset.png │ └── select-schedules-tab.png │ ├── data-health.mp4 │ ├── data-processing.svg │ ├── databases │ ├── athena.png │ ├── bigquery-icon.png │ ├── mysql.png │ ├── postgresql.png │ ├── redshift.png │ ├── snowflake-icon.png │ └── trino.png │ ├── dataset-create-action.png │ ├── dataset-list.png │ ├── datasets-and-create-dataset.png │ ├── datasource-list.png │ ├── datasources-create-datasource.png │ ├── documentation.svg │ ├── docusaurus.png │ ├── examination.svg │ ├── expectations-tab-and-run.png │ ├── favicon.ico │ ├── fill-in-and-create-datasource.png │ ├── fill-in-query-dataset-and-create-dataset.png │ ├── filled-action-example.png │ ├── filled-destination-example.png │ ├── generate-suggestions.mp4 │ ├── login.png │ ├── logo-slogan.svg │ ├── logo.png │ ├── notifications.svg │ ├── oauth.svg │ ├── scheduling.svg │ ├── secure-field.png │ ├── suggestions-enable.png │ ├── suggestions-tab-generate.png │ ├── supported-engines-dark.svg │ ├── supported-engines-light.svg │ └── swiple-demo-video-poster.png └── frontend ├── .dockerignore ├── .env.development ├── .env.production ├── .eslintrc.yml ├── Dockerfile ├── Dockerfile.prod ├── README.md ├── nginx.conf ├── package-lock.json ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo.png ├── manifest.json └── robots.txt └── src ├── Api.js ├── App.css ├── App.jsx ├── Auth.jsx ├── JsonSchemaFormValidator.js ├── Routes.jsx ├── Utils.jsx ├── components ├── ActionModal.jsx ├── AsyncButton.jsx ├── AvatarDropdown.jsx ├── Card.jsx ├── Header.jsx ├── Layout.jsx ├── Metric.jsx ├── MetricCard.jsx ├── Modal.jsx ├── NavBar.jsx ├── Section.jsx └── Statistic.jsx ├── config └── Routes.jsx ├── index.css ├── index.jsx ├── reportWebVitals.js ├── screens ├── Login.jsx ├── dashboard │ ├── components │ │ ├── ChartCard.jsx │ │ ├── IntroduceRow.jsx │ │ └── TopIssues.jsx │ └── index.jsx ├── dataset │ ├── components │ │ ├── CodeEditor.jsx │ │ ├── DataSample.jsx │ │ ├── ExpectationHistory.jsx │ │ ├── ExpectationModal.jsx │ │ ├── ObjectiveHitRate.jsx │ │ └── ScheduleModal.jsx │ └── index.jsx ├── datasetOverview │ ├── components │ │ └── DatasetModal.jsx │ └── index.jsx ├── datasourceOverview │ ├── components │ │ └── DatasourceModal.jsx │ └── index.jsx ├── destinationOverview │ ├── components │ │ └── DestinationModal.jsx │ └── index.jsx └── settingsOverview │ ├── components │ ├── UserModal.jsx │ └── UserOverview.jsx │ └── index.jsx └── static └── images ├── aws-athena.svg ├── aws-redshift.svg ├── bigquery.svg ├── google-icon.png ├── index.js ├── logo.png ├── mail-icon.svg ├── microsoft-icon.png ├── microsoft-teams-icon.svg ├── mysql-official.svg ├── mysql-outline.svg ├── okta-icon.png ├── okta.png ├── opsgenie-icon.svg ├── pagerduty-icon.svg ├── postgresql.svg ├── slack-icon.svg ├── snowflake.svg └── trino-icon.svg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/actions/test-backend/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/.github/actions/test-backend/action.yml -------------------------------------------------------------------------------- /.github/pull_request_template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/.github/pull_request_template.yml -------------------------------------------------------------------------------- /.github/templates/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/.github/templates/certificate.yaml -------------------------------------------------------------------------------- /.github/templates/website.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/.github/templates/website.yaml -------------------------------------------------------------------------------- /.github/workflows/build-swiple-website.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/.github/workflows/build-swiple-website.yml -------------------------------------------------------------------------------- /.github/workflows/ci-cd-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/.github/workflows/ci-cd-pr.yml -------------------------------------------------------------------------------- /.github/workflows/ci-cd-production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/.github/workflows/ci-cd-production.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-swiple-website.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/.github/workflows/deploy-swiple-website.yml -------------------------------------------------------------------------------- /.github/workflows/first-interaction.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/.github/workflows/first-interaction.yml -------------------------------------------------------------------------------- /.github/workflows/github-repo-stats.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/.github/workflows/github-repo-stats.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/publish-docker-images.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/.github/workflows/publish-docker-images.yml -------------------------------------------------------------------------------- /.github/workflows/stale-issue-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/.github/workflows/stale-issue-pr.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/SECURITY.md -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/api/api_v1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/api/api_v1/auth_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/api/api_v1/auth_router.py -------------------------------------------------------------------------------- /backend/app/api/api_v1/endpoints/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/api/api_v1/endpoints/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/api/api_v1/endpoints/action.py -------------------------------------------------------------------------------- /backend/app/api/api_v1/endpoints/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/api/api_v1/endpoints/auth.py -------------------------------------------------------------------------------- /backend/app/api/api_v1/endpoints/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/api/api_v1/endpoints/dataset.py -------------------------------------------------------------------------------- /backend/app/api/api_v1/endpoints/datasource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/api/api_v1/endpoints/datasource.py -------------------------------------------------------------------------------- /backend/app/api/api_v1/endpoints/destination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/api/api_v1/endpoints/destination.py -------------------------------------------------------------------------------- /backend/app/api/api_v1/endpoints/expectation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/api/api_v1/endpoints/expectation.py -------------------------------------------------------------------------------- /backend/app/api/api_v1/endpoints/health.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/api/api_v1/endpoints/health.py -------------------------------------------------------------------------------- /backend/app/api/api_v1/endpoints/introspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/api/api_v1/endpoints/introspect.py -------------------------------------------------------------------------------- /backend/app/api/api_v1/endpoints/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/api/api_v1/endpoints/metrics.py -------------------------------------------------------------------------------- /backend/app/api/api_v1/endpoints/schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/api/api_v1/endpoints/schedule.py -------------------------------------------------------------------------------- /backend/app/api/api_v1/endpoints/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/api/api_v1/endpoints/scheduler.py -------------------------------------------------------------------------------- /backend/app/api/api_v1/endpoints/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/api/api_v1/endpoints/task.py -------------------------------------------------------------------------------- /backend/app/api/api_v1/endpoints/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/api/api_v1/endpoints/user.py -------------------------------------------------------------------------------- /backend/app/api/api_v1/endpoints/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/api/api_v1/endpoints/validation.py -------------------------------------------------------------------------------- /backend/app/api/api_v1/scheduler_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/api/api_v1/scheduler_router.py -------------------------------------------------------------------------------- /backend/app/api/api_v1/swiple_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/api/api_v1/swiple_router.py -------------------------------------------------------------------------------- /backend/app/api/exception_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/api/exception_handlers.py -------------------------------------------------------------------------------- /backend/app/api/shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/api/shortcuts.py -------------------------------------------------------------------------------- /backend/app/celery_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/celery_worker.py -------------------------------------------------------------------------------- /backend/app/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/constants.py -------------------------------------------------------------------------------- /backend/app/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/core/actions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/core/actions/action_dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/core/actions/action_dispatcher.py -------------------------------------------------------------------------------- /backend/app/core/actions/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/core/actions/base.py -------------------------------------------------------------------------------- /backend/app/core/actions/email_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/core/actions/email_action.py -------------------------------------------------------------------------------- /backend/app/core/actions/microsoft_teams_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/core/actions/microsoft_teams_action.py -------------------------------------------------------------------------------- /backend/app/core/actions/microsoft_teams_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/core/actions/microsoft_teams_template.json -------------------------------------------------------------------------------- /backend/app/core/actions/ops_genie_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/core/actions/ops_genie_action.py -------------------------------------------------------------------------------- /backend/app/core/actions/pager_duty_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/core/actions/pager_duty_action.py -------------------------------------------------------------------------------- /backend/app/core/actions/slack_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/core/actions/slack_action.py -------------------------------------------------------------------------------- /backend/app/core/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/core/exceptions.py -------------------------------------------------------------------------------- /backend/app/core/expectations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/core/expectations.py -------------------------------------------------------------------------------- /backend/app/core/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/core/runner.py -------------------------------------------------------------------------------- /backend/app/core/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/core/sample.py -------------------------------------------------------------------------------- /backend/app/core/schedulers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/core/schedulers/ap_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/core/schedulers/ap_scheduler.py -------------------------------------------------------------------------------- /backend/app/core/schedulers/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/core/schedulers/scheduler.py -------------------------------------------------------------------------------- /backend/app/core/schedulers/scheduler_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/core/schedulers/scheduler_interface.py -------------------------------------------------------------------------------- /backend/app/core/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/core/security.py -------------------------------------------------------------------------------- /backend/app/core/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/core/users.py -------------------------------------------------------------------------------- /backend/app/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/db/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/db/client.py -------------------------------------------------------------------------------- /backend/app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/main.py -------------------------------------------------------------------------------- /backend/app/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/migrations/__init__.py -------------------------------------------------------------------------------- /backend/app/migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/migrations/env.py -------------------------------------------------------------------------------- /backend/app/migrations/migration_template_painless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/migrations/migration_template_painless.py -------------------------------------------------------------------------------- /backend/app/migrations/migration_template_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/migrations/migration_template_python.py -------------------------------------------------------------------------------- /backend/app/migrations/versions/1_datasources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/migrations/versions/1_datasources.py -------------------------------------------------------------------------------- /backend/app/migrations/versions/2_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/migrations/versions/2_datasets.py -------------------------------------------------------------------------------- /backend/app/migrations/versions/3_validations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/migrations/versions/3_validations.py -------------------------------------------------------------------------------- /backend/app/migrations/versions/4_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/migrations/versions/4_users.py -------------------------------------------------------------------------------- /backend/app/migrations/versions/5_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/migrations/versions/5_actions.py -------------------------------------------------------------------------------- /backend/app/migrations/versions/6_destinations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/migrations/versions/6_destinations.py -------------------------------------------------------------------------------- /backend/app/migrations/versions/7_expectations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/migrations/versions/7_expectations.py -------------------------------------------------------------------------------- /backend/app/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/models/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/models/action.py -------------------------------------------------------------------------------- /backend/app/models/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/models/base_model.py -------------------------------------------------------------------------------- /backend/app/models/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/models/dataset.py -------------------------------------------------------------------------------- /backend/app/models/datasource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/models/datasource.py -------------------------------------------------------------------------------- /backend/app/models/destinations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/models/destinations/destination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/models/destinations/destination.py -------------------------------------------------------------------------------- /backend/app/models/destinations/email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/models/destinations/email.py -------------------------------------------------------------------------------- /backend/app/models/destinations/microsoft_teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/models/destinations/microsoft_teams.py -------------------------------------------------------------------------------- /backend/app/models/destinations/ops_genie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/models/destinations/ops_genie.py -------------------------------------------------------------------------------- /backend/app/models/destinations/pager_duty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/models/destinations/pager_duty.py -------------------------------------------------------------------------------- /backend/app/models/destinations/slack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/models/destinations/slack.py -------------------------------------------------------------------------------- /backend/app/models/expectation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/models/expectation.py -------------------------------------------------------------------------------- /backend/app/models/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/models/runner.py -------------------------------------------------------------------------------- /backend/app/models/schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/models/schedule.py -------------------------------------------------------------------------------- /backend/app/models/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/models/task.py -------------------------------------------------------------------------------- /backend/app/models/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/models/types.py -------------------------------------------------------------------------------- /backend/app/models/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/models/users.py -------------------------------------------------------------------------------- /backend/app/models/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/models/validation.py -------------------------------------------------------------------------------- /backend/app/opensearch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/opensearch.yaml -------------------------------------------------------------------------------- /backend/app/repositories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/repositories/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/repositories/action.py -------------------------------------------------------------------------------- /backend/app/repositories/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/repositories/base.py -------------------------------------------------------------------------------- /backend/app/repositories/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/repositories/dataset.py -------------------------------------------------------------------------------- /backend/app/repositories/datasource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/repositories/datasource.py -------------------------------------------------------------------------------- /backend/app/repositories/destination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/repositories/destination.py -------------------------------------------------------------------------------- /backend/app/repositories/expectation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/repositories/expectation.py -------------------------------------------------------------------------------- /backend/app/repositories/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/repositories/task.py -------------------------------------------------------------------------------- /backend/app/repositories/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/repositories/user.py -------------------------------------------------------------------------------- /backend/app/repositories/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/repositories/validation.py -------------------------------------------------------------------------------- /backend/app/sample_data/create_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/sample_data/create_tables.sql -------------------------------------------------------------------------------- /backend/app/sample_data/data/customer.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/sample_data/data/customer.csv -------------------------------------------------------------------------------- /backend/app/sample_data/data/lineitem.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/sample_data/data/lineitem.csv -------------------------------------------------------------------------------- /backend/app/sample_data/data/nation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/sample_data/data/nation.csv -------------------------------------------------------------------------------- /backend/app/sample_data/data/orders.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/sample_data/data/orders.csv -------------------------------------------------------------------------------- /backend/app/sample_data/data/part.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/sample_data/data/part.csv -------------------------------------------------------------------------------- /backend/app/sample_data/load_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/sample_data/load_data.py -------------------------------------------------------------------------------- /backend/app/sample_data/snowflake.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/sample_data/snowflake.sql -------------------------------------------------------------------------------- /backend/app/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/scripts/create_admin_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/scripts/create_admin_user.py -------------------------------------------------------------------------------- /backend/app/scripts/generate_secret_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/scripts/generate_secret_key.py -------------------------------------------------------------------------------- /backend/app/scripts/manual_integration_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/scripts/manual_integration_test.py -------------------------------------------------------------------------------- /backend/app/scripts/setup_opensearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/scripts/setup_opensearch.py -------------------------------------------------------------------------------- /backend/app/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/settings.py -------------------------------------------------------------------------------- /backend/app/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/utils.py -------------------------------------------------------------------------------- /backend/app/worker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/worker/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/worker/app.py -------------------------------------------------------------------------------- /backend/app/worker/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/worker/backends/opensearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/worker/backends/opensearch.py -------------------------------------------------------------------------------- /backend/app/worker/tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/worker/tasks/suggestions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/worker/tasks/suggestions.py -------------------------------------------------------------------------------- /backend/app/worker/tasks/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/app/worker/tasks/validation.py -------------------------------------------------------------------------------- /backend/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/main.py -------------------------------------------------------------------------------- /backend/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/poetry.lock -------------------------------------------------------------------------------- /backend/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/pyproject.toml -------------------------------------------------------------------------------- /backend/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/tests/conftest.py -------------------------------------------------------------------------------- /backend/tests/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/tests/data.py -------------------------------------------------------------------------------- /backend/tests/fake_opensearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/tests/fake_opensearch.py -------------------------------------------------------------------------------- /backend/tests/test_api_v1_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/tests/test_api_v1_dataset.py -------------------------------------------------------------------------------- /backend/tests/test_api_v1_datasource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/tests/test_api_v1_datasource.py -------------------------------------------------------------------------------- /backend/tests/test_api_v1_expectation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/tests/test_api_v1_expectation.py -------------------------------------------------------------------------------- /backend/tests/test_api_v1_health.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/tests/test_api_v1_health.py -------------------------------------------------------------------------------- /backend/tests/test_api_v1_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/tests/test_api_v1_task.py -------------------------------------------------------------------------------- /backend/tests/test_api_v1_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/tests/test_api_v1_validation.py -------------------------------------------------------------------------------- /backend/tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/tests/test_main.py -------------------------------------------------------------------------------- /backend/tests/test_repositories_datasource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/backend/tests/test_repositories_datasource.py -------------------------------------------------------------------------------- /docker-compose-dbs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docker-compose-dbs.yaml -------------------------------------------------------------------------------- /docker-compose-non-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docker-compose-non-dev.yaml -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /docker/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docker/.env -------------------------------------------------------------------------------- /docker/.env-local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docker/.env-local -------------------------------------------------------------------------------- /docker/.env-non-dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docker/.env-non-dev -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/babel.config.js -------------------------------------------------------------------------------- /docs/docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/docs/contributing.md -------------------------------------------------------------------------------- /docs/docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/docs/faq.md -------------------------------------------------------------------------------- /docs/docs/getting-started/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/docs/getting-started/_category_.json -------------------------------------------------------------------------------- /docs/docs/getting-started/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/docs/getting-started/quick-start.md -------------------------------------------------------------------------------- /docs/docs/getting-started/start-developing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/docs/getting-started/start-developing.md -------------------------------------------------------------------------------- /docs/docs/how-to-guides/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/docs/how-to-guides/_category_.json -------------------------------------------------------------------------------- /docs/docs/how-to-guides/actions/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/docs/how-to-guides/actions/_category_.json -------------------------------------------------------------------------------- /docs/docs/how-to-guides/actions/email.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/docs/how-to-guides/actions/email.md -------------------------------------------------------------------------------- /docs/docs/how-to-guides/actions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/docs/how-to-guides/actions/index.md -------------------------------------------------------------------------------- /docs/docs/how-to-guides/actions/microsoft-teams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/docs/how-to-guides/actions/microsoft-teams.md -------------------------------------------------------------------------------- /docs/docs/how-to-guides/actions/ops-genie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/docs/how-to-guides/actions/ops-genie.md -------------------------------------------------------------------------------- /docs/docs/how-to-guides/actions/pager-duty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/docs/how-to-guides/actions/pager-duty.md -------------------------------------------------------------------------------- /docs/docs/how-to-guides/actions/slack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/docs/how-to-guides/actions/slack.md -------------------------------------------------------------------------------- /docs/docs/how-to-guides/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/docs/how-to-guides/authentication.md -------------------------------------------------------------------------------- /docs/docs/how-to-guides/how-to-update-SECRET_KEY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/docs/how-to-guides/how-to-update-SECRET_KEY.md -------------------------------------------------------------------------------- /docs/docs/how-to-guides/overriding-env-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/docs/how-to-guides/overriding-env-variables.md -------------------------------------------------------------------------------- /docs/docs/how-to-guides/scheduling-validations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/docs/how-to-guides/scheduling-validations.md -------------------------------------------------------------------------------- /docs/docs/how-to-guides/secrets-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/docs/how-to-guides/secrets-manager.md -------------------------------------------------------------------------------- /docs/docs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/docs/index.mdx -------------------------------------------------------------------------------- /docs/docs/tutorials/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/docs/tutorials/_category_.json -------------------------------------------------------------------------------- /docs/docs/tutorials/start-monitoring-your-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/docs/tutorials/start-monitoring-your-data.md -------------------------------------------------------------------------------- /docs/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/docusaurus.config.js -------------------------------------------------------------------------------- /docs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/package-lock.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/sidebars.js -------------------------------------------------------------------------------- /docs/src/components/Carousel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/src/components/Carousel/index.js -------------------------------------------------------------------------------- /docs/src/components/Expectations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/src/components/Expectations/index.js -------------------------------------------------------------------------------- /docs/src/components/Expectations/jsonSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/src/components/Expectations/jsonSchema.js -------------------------------------------------------------------------------- /docs/src/components/Expectations/styles.module.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/src/components/HeroGradient/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/src/components/HeroGradient/index.js -------------------------------------------------------------------------------- /docs/src/components/HeroGradient/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/src/components/HeroGradient/styles.module.css -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/src/components/HomepageFeatures/index.js -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/src/components/HomepageFeatures/styles.module.css -------------------------------------------------------------------------------- /docs/src/components/Pricing/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/src/components/Pricing/index.js -------------------------------------------------------------------------------- /docs/src/components/StripePricingTable/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/src/components/StripePricingTable/index.js -------------------------------------------------------------------------------- /docs/src/components/StripePricingTable/loadStripeScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/src/components/StripePricingTable/loadStripeScript.js -------------------------------------------------------------------------------- /docs/src/components/SupportedDatabases/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/src/components/SupportedDatabases/index.js -------------------------------------------------------------------------------- /docs/src/components/SupportedDatabases/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/src/components/SupportedDatabases/styles.module.css -------------------------------------------------------------------------------- /docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/src/css/custom.css -------------------------------------------------------------------------------- /docs/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/src/pages/index.js -------------------------------------------------------------------------------- /docs/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/src/pages/index.module.css -------------------------------------------------------------------------------- /docs/src/pages/markdown-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/src/pages/markdown-page.md -------------------------------------------------------------------------------- /docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/static/img/actions/email/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/actions/email/example.png -------------------------------------------------------------------------------- /docs/static/img/actions/email/step-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/actions/email/step-1.png -------------------------------------------------------------------------------- /docs/static/img/actions/email/step-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/actions/email/step-2.png -------------------------------------------------------------------------------- /docs/static/img/actions/email/step-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/actions/email/step-3.png -------------------------------------------------------------------------------- /docs/static/img/actions/email/step-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/actions/email/step-4.png -------------------------------------------------------------------------------- /docs/static/img/actions/email/step-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/actions/email/step-5.png -------------------------------------------------------------------------------- /docs/static/img/actions/email/step-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/actions/email/step-6.png -------------------------------------------------------------------------------- /docs/static/img/actions/microsoftteams/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/actions/microsoftteams/example.png -------------------------------------------------------------------------------- /docs/static/img/actions/microsoftteams/step-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/actions/microsoftteams/step-1.png -------------------------------------------------------------------------------- /docs/static/img/actions/microsoftteams/step-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/actions/microsoftteams/step-2.png -------------------------------------------------------------------------------- /docs/static/img/actions/microsoftteams/step-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/actions/microsoftteams/step-3.png -------------------------------------------------------------------------------- /docs/static/img/actions/microsoftteams/step-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/actions/microsoftteams/step-4.png -------------------------------------------------------------------------------- /docs/static/img/actions/microsoftteams/step-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/actions/microsoftteams/step-5.png -------------------------------------------------------------------------------- /docs/static/img/actions/microsoftteams/step-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/actions/microsoftteams/step-6.png -------------------------------------------------------------------------------- /docs/static/img/actions/microsoftteams/swiple-ms-teams-connector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/actions/microsoftteams/swiple-ms-teams-connector.png -------------------------------------------------------------------------------- /docs/static/img/actions/opsgenie/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/actions/opsgenie/example.png -------------------------------------------------------------------------------- /docs/static/img/actions/opsgenie/step-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/actions/opsgenie/step-1.png -------------------------------------------------------------------------------- /docs/static/img/actions/opsgenie/step-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/actions/opsgenie/step-2.png -------------------------------------------------------------------------------- /docs/static/img/actions/opsgenie/step-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/actions/opsgenie/step-3.png -------------------------------------------------------------------------------- /docs/static/img/actions/opsgenie/step-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/actions/opsgenie/step-5.png -------------------------------------------------------------------------------- /docs/static/img/actions/opsgenie/step-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/actions/opsgenie/step-6.png -------------------------------------------------------------------------------- /docs/static/img/actions/pagerduty/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/actions/pagerduty/example.png -------------------------------------------------------------------------------- /docs/static/img/actions/pagerduty/step-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/actions/pagerduty/step-1.png -------------------------------------------------------------------------------- /docs/static/img/actions/pagerduty/step-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/actions/pagerduty/step-2.png -------------------------------------------------------------------------------- /docs/static/img/actions/pagerduty/step-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/actions/pagerduty/step-3.png -------------------------------------------------------------------------------- /docs/static/img/actions/pagerduty/step-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/actions/pagerduty/step-4.png -------------------------------------------------------------------------------- /docs/static/img/actions/pagerduty/step-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/actions/pagerduty/step-5.png -------------------------------------------------------------------------------- /docs/static/img/actions/pagerduty/step-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/actions/pagerduty/step-6.png -------------------------------------------------------------------------------- /docs/static/img/actions/slack/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/actions/slack/example.png -------------------------------------------------------------------------------- /docs/static/img/actions/slack/step-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/actions/slack/step-2.png -------------------------------------------------------------------------------- /docs/static/img/actions/slack/step-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/actions/slack/step-3.png -------------------------------------------------------------------------------- /docs/static/img/actions/slack/step-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/actions/slack/step-4.png -------------------------------------------------------------------------------- /docs/static/img/actions/slack/step-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/actions/slack/step-5.png -------------------------------------------------------------------------------- /docs/static/img/actions/slack/step-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/actions/slack/step-6.png -------------------------------------------------------------------------------- /docs/static/img/actions/slack/step-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/actions/slack/step-7.png -------------------------------------------------------------------------------- /docs/static/img/actions/slack/step-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/actions/slack/step-8.png -------------------------------------------------------------------------------- /docs/static/img/actions/slack/step-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/actions/slack/step-9.png -------------------------------------------------------------------------------- /docs/static/img/automated-profiling.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/automated-profiling.svg -------------------------------------------------------------------------------- /docs/static/img/create-action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/create-action.png -------------------------------------------------------------------------------- /docs/static/img/create-destination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/create-destination.png -------------------------------------------------------------------------------- /docs/static/img/create-schedule.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/create-schedule.mp4 -------------------------------------------------------------------------------- /docs/static/img/creating_a_schedule/fill-in-schedule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/creating_a_schedule/fill-in-schedule.png -------------------------------------------------------------------------------- /docs/static/img/creating_a_schedule/navigate-to-datasets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/creating_a_schedule/navigate-to-datasets.png -------------------------------------------------------------------------------- /docs/static/img/creating_a_schedule/note-next-runs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/creating_a_schedule/note-next-runs.png -------------------------------------------------------------------------------- /docs/static/img/creating_a_schedule/schedule-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/creating_a_schedule/schedule-list.png -------------------------------------------------------------------------------- /docs/static/img/creating_a_schedule/select-dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/creating_a_schedule/select-dataset.png -------------------------------------------------------------------------------- /docs/static/img/creating_a_schedule/select-schedules-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/creating_a_schedule/select-schedules-tab.png -------------------------------------------------------------------------------- /docs/static/img/data-health.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/data-health.mp4 -------------------------------------------------------------------------------- /docs/static/img/data-processing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/data-processing.svg -------------------------------------------------------------------------------- /docs/static/img/databases/athena.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/databases/athena.png -------------------------------------------------------------------------------- /docs/static/img/databases/bigquery-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/databases/bigquery-icon.png -------------------------------------------------------------------------------- /docs/static/img/databases/mysql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/databases/mysql.png -------------------------------------------------------------------------------- /docs/static/img/databases/postgresql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/databases/postgresql.png -------------------------------------------------------------------------------- /docs/static/img/databases/redshift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/databases/redshift.png -------------------------------------------------------------------------------- /docs/static/img/databases/snowflake-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/databases/snowflake-icon.png -------------------------------------------------------------------------------- /docs/static/img/databases/trino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/databases/trino.png -------------------------------------------------------------------------------- /docs/static/img/dataset-create-action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/dataset-create-action.png -------------------------------------------------------------------------------- /docs/static/img/dataset-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/dataset-list.png -------------------------------------------------------------------------------- /docs/static/img/datasets-and-create-dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/datasets-and-create-dataset.png -------------------------------------------------------------------------------- /docs/static/img/datasource-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/datasource-list.png -------------------------------------------------------------------------------- /docs/static/img/datasources-create-datasource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/datasources-create-datasource.png -------------------------------------------------------------------------------- /docs/static/img/documentation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/documentation.svg -------------------------------------------------------------------------------- /docs/static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/docusaurus.png -------------------------------------------------------------------------------- /docs/static/img/examination.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/examination.svg -------------------------------------------------------------------------------- /docs/static/img/expectations-tab-and-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/expectations-tab-and-run.png -------------------------------------------------------------------------------- /docs/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/favicon.ico -------------------------------------------------------------------------------- /docs/static/img/fill-in-and-create-datasource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/fill-in-and-create-datasource.png -------------------------------------------------------------------------------- /docs/static/img/fill-in-query-dataset-and-create-dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/fill-in-query-dataset-and-create-dataset.png -------------------------------------------------------------------------------- /docs/static/img/filled-action-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/filled-action-example.png -------------------------------------------------------------------------------- /docs/static/img/filled-destination-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/filled-destination-example.png -------------------------------------------------------------------------------- /docs/static/img/generate-suggestions.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/generate-suggestions.mp4 -------------------------------------------------------------------------------- /docs/static/img/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/login.png -------------------------------------------------------------------------------- /docs/static/img/logo-slogan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/logo-slogan.svg -------------------------------------------------------------------------------- /docs/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/logo.png -------------------------------------------------------------------------------- /docs/static/img/notifications.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/notifications.svg -------------------------------------------------------------------------------- /docs/static/img/oauth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/oauth.svg -------------------------------------------------------------------------------- /docs/static/img/scheduling.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/scheduling.svg -------------------------------------------------------------------------------- /docs/static/img/secure-field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/secure-field.png -------------------------------------------------------------------------------- /docs/static/img/suggestions-enable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/suggestions-enable.png -------------------------------------------------------------------------------- /docs/static/img/suggestions-tab-generate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/suggestions-tab-generate.png -------------------------------------------------------------------------------- /docs/static/img/supported-engines-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/supported-engines-dark.svg -------------------------------------------------------------------------------- /docs/static/img/supported-engines-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/supported-engines-light.svg -------------------------------------------------------------------------------- /docs/static/img/swiple-demo-video-poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/docs/static/img/swiple-demo-video-poster.png -------------------------------------------------------------------------------- /frontend/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /frontend/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/.env.development -------------------------------------------------------------------------------- /frontend/.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/.env.production -------------------------------------------------------------------------------- /frontend/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/.eslintrc.yml -------------------------------------------------------------------------------- /frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/Dockerfile -------------------------------------------------------------------------------- /frontend/Dockerfile.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/Dockerfile.prod -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/nginx.conf -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/public/logo.png -------------------------------------------------------------------------------- /frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/public/manifest.json -------------------------------------------------------------------------------- /frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/public/robots.txt -------------------------------------------------------------------------------- /frontend/src/Api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/Api.js -------------------------------------------------------------------------------- /frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/App.css -------------------------------------------------------------------------------- /frontend/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/App.jsx -------------------------------------------------------------------------------- /frontend/src/Auth.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/Auth.jsx -------------------------------------------------------------------------------- /frontend/src/JsonSchemaFormValidator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/JsonSchemaFormValidator.js -------------------------------------------------------------------------------- /frontend/src/Routes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/Routes.jsx -------------------------------------------------------------------------------- /frontend/src/Utils.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/Utils.jsx -------------------------------------------------------------------------------- /frontend/src/components/ActionModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/components/ActionModal.jsx -------------------------------------------------------------------------------- /frontend/src/components/AsyncButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/components/AsyncButton.jsx -------------------------------------------------------------------------------- /frontend/src/components/AvatarDropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/components/AvatarDropdown.jsx -------------------------------------------------------------------------------- /frontend/src/components/Card.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/components/Card.jsx -------------------------------------------------------------------------------- /frontend/src/components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/components/Header.jsx -------------------------------------------------------------------------------- /frontend/src/components/Layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/components/Layout.jsx -------------------------------------------------------------------------------- /frontend/src/components/Metric.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/components/Metric.jsx -------------------------------------------------------------------------------- /frontend/src/components/MetricCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/components/MetricCard.jsx -------------------------------------------------------------------------------- /frontend/src/components/Modal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/components/Modal.jsx -------------------------------------------------------------------------------- /frontend/src/components/NavBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/components/NavBar.jsx -------------------------------------------------------------------------------- /frontend/src/components/Section.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/components/Section.jsx -------------------------------------------------------------------------------- /frontend/src/components/Statistic.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/components/Statistic.jsx -------------------------------------------------------------------------------- /frontend/src/config/Routes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/config/Routes.jsx -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/index.jsx -------------------------------------------------------------------------------- /frontend/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/reportWebVitals.js -------------------------------------------------------------------------------- /frontend/src/screens/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/screens/Login.jsx -------------------------------------------------------------------------------- /frontend/src/screens/dashboard/components/ChartCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/screens/dashboard/components/ChartCard.jsx -------------------------------------------------------------------------------- /frontend/src/screens/dashboard/components/IntroduceRow.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/screens/dashboard/components/IntroduceRow.jsx -------------------------------------------------------------------------------- /frontend/src/screens/dashboard/components/TopIssues.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/screens/dashboard/components/TopIssues.jsx -------------------------------------------------------------------------------- /frontend/src/screens/dashboard/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/screens/dashboard/index.jsx -------------------------------------------------------------------------------- /frontend/src/screens/dataset/components/CodeEditor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/screens/dataset/components/CodeEditor.jsx -------------------------------------------------------------------------------- /frontend/src/screens/dataset/components/DataSample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/screens/dataset/components/DataSample.jsx -------------------------------------------------------------------------------- /frontend/src/screens/dataset/components/ExpectationHistory.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/screens/dataset/components/ExpectationHistory.jsx -------------------------------------------------------------------------------- /frontend/src/screens/dataset/components/ExpectationModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/screens/dataset/components/ExpectationModal.jsx -------------------------------------------------------------------------------- /frontend/src/screens/dataset/components/ObjectiveHitRate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/screens/dataset/components/ObjectiveHitRate.jsx -------------------------------------------------------------------------------- /frontend/src/screens/dataset/components/ScheduleModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/screens/dataset/components/ScheduleModal.jsx -------------------------------------------------------------------------------- /frontend/src/screens/dataset/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/screens/dataset/index.jsx -------------------------------------------------------------------------------- /frontend/src/screens/datasetOverview/components/DatasetModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/screens/datasetOverview/components/DatasetModal.jsx -------------------------------------------------------------------------------- /frontend/src/screens/datasetOverview/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/screens/datasetOverview/index.jsx -------------------------------------------------------------------------------- /frontend/src/screens/datasourceOverview/components/DatasourceModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/screens/datasourceOverview/components/DatasourceModal.jsx -------------------------------------------------------------------------------- /frontend/src/screens/datasourceOverview/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/screens/datasourceOverview/index.jsx -------------------------------------------------------------------------------- /frontend/src/screens/destinationOverview/components/DestinationModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/screens/destinationOverview/components/DestinationModal.jsx -------------------------------------------------------------------------------- /frontend/src/screens/destinationOverview/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/screens/destinationOverview/index.jsx -------------------------------------------------------------------------------- /frontend/src/screens/settingsOverview/components/UserModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/screens/settingsOverview/components/UserModal.jsx -------------------------------------------------------------------------------- /frontend/src/screens/settingsOverview/components/UserOverview.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/screens/settingsOverview/components/UserOverview.jsx -------------------------------------------------------------------------------- /frontend/src/screens/settingsOverview/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/screens/settingsOverview/index.jsx -------------------------------------------------------------------------------- /frontend/src/static/images/aws-athena.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/static/images/aws-athena.svg -------------------------------------------------------------------------------- /frontend/src/static/images/aws-redshift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/static/images/aws-redshift.svg -------------------------------------------------------------------------------- /frontend/src/static/images/bigquery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/static/images/bigquery.svg -------------------------------------------------------------------------------- /frontend/src/static/images/google-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/static/images/google-icon.png -------------------------------------------------------------------------------- /frontend/src/static/images/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/static/images/index.js -------------------------------------------------------------------------------- /frontend/src/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/static/images/logo.png -------------------------------------------------------------------------------- /frontend/src/static/images/mail-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/static/images/mail-icon.svg -------------------------------------------------------------------------------- /frontend/src/static/images/microsoft-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/static/images/microsoft-icon.png -------------------------------------------------------------------------------- /frontend/src/static/images/microsoft-teams-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/static/images/microsoft-teams-icon.svg -------------------------------------------------------------------------------- /frontend/src/static/images/mysql-official.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/static/images/mysql-official.svg -------------------------------------------------------------------------------- /frontend/src/static/images/mysql-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/static/images/mysql-outline.svg -------------------------------------------------------------------------------- /frontend/src/static/images/okta-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/static/images/okta-icon.png -------------------------------------------------------------------------------- /frontend/src/static/images/okta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/static/images/okta.png -------------------------------------------------------------------------------- /frontend/src/static/images/opsgenie-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/static/images/opsgenie-icon.svg -------------------------------------------------------------------------------- /frontend/src/static/images/pagerduty-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/static/images/pagerduty-icon.svg -------------------------------------------------------------------------------- /frontend/src/static/images/postgresql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/static/images/postgresql.svg -------------------------------------------------------------------------------- /frontend/src/static/images/slack-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/static/images/slack-icon.svg -------------------------------------------------------------------------------- /frontend/src/static/images/snowflake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/static/images/snowflake.svg -------------------------------------------------------------------------------- /frontend/src/static/images/trino-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiple/swiple/HEAD/frontend/src/static/images/trino-icon.svg --------------------------------------------------------------------------------