├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── .gitlab-ci.yml ├── .gitlab ├── agents │ └── k8s-cluster-1 │ │ └── config.yaml └── merge_request_templates │ └── General.md ├── .gitpod.yml ├── .whitesource ├── CLAUDE.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── assets ├── database-lab-dark-mode.png ├── database-lab-dark-mode.svg ├── database-lab-light-mode.png ├── database-lab-light-mode.svg ├── db-lab.png ├── dle-demo-animated.gif ├── dle-logo-only-transparent-590x373.png ├── dle-logo-only-white-bg-640x640.png ├── dle-simple.png ├── dle-simple.svg ├── dle-square-1024x1024.png ├── dle-square-220x220.png ├── dle-square-512x512.png ├── dle.svg ├── dle_button.svg └── star.gif ├── engine ├── .dockerignore ├── .gitlab-ci.yml ├── .golangci.yml ├── Dockerfile.ci-checker ├── Dockerfile.dblab-cli ├── Dockerfile.dblab-server ├── Dockerfile.dblab-server-debug ├── Dockerfile.dblab-server-zfs08 ├── Dockerfile.swagger-ui ├── Makefile ├── api │ ├── README.md │ ├── postman │ │ ├── branching.aws.postgres.ai.postman_environment.json │ │ ├── dblab_api.postman_collection.json │ │ └── portman-cli.json │ ├── swagger-spec │ │ ├── dblab_openapi.yaml │ │ └── dblab_server_swagger.yaml │ └── swagger-ui │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── index.css │ │ ├── index.html │ │ ├── oauth2-redirect.html │ │ ├── swagger-initializer.js │ │ ├── swagger-ui-bundle.js │ │ ├── swagger-ui-bundle.js.map │ │ ├── swagger-ui-es-bundle-core.js │ │ ├── swagger-ui-es-bundle-core.js.map │ │ ├── swagger-ui-es-bundle.js │ │ ├── swagger-ui-es-bundle.js.map │ │ ├── swagger-ui-standalone-preset.js │ │ ├── swagger-ui-standalone-preset.js.map │ │ ├── swagger-ui.css │ │ ├── swagger-ui.css.map │ │ ├── swagger-ui.js │ │ └── swagger-ui.js.map ├── cmd │ ├── cli │ │ ├── commands │ │ │ ├── branch │ │ │ │ ├── actions.go │ │ │ │ └── command_list.go │ │ │ ├── client.go │ │ │ ├── clone │ │ │ │ ├── actions.go │ │ │ │ └── command_list.go │ │ │ ├── config │ │ │ │ ├── actions.go │ │ │ │ ├── command_list.go │ │ │ │ ├── duration.go │ │ │ │ ├── environment.go │ │ │ │ └── file.go │ │ │ ├── errors.go │ │ │ ├── global │ │ │ │ ├── actions.go │ │ │ │ └── command_list.go │ │ │ ├── instance │ │ │ │ ├── actions.go │ │ │ │ └── command_list.go │ │ │ ├── port_forwarding.go │ │ │ └── snapshot │ │ │ │ ├── actions.go │ │ │ │ └── command_list.go │ │ ├── main.go │ │ └── templates │ │ │ └── help.go │ ├── database-lab │ │ └── main.go │ └── runci │ │ └── main.go ├── configs │ ├── config.example.ci_checker.yml │ ├── config.example.logical_generic.yml │ ├── config.example.logical_rds_iam.yml │ ├── config.example.physical_generic.yml │ ├── config.example.physical_pgbackrest.yml │ ├── config.example.physical_walg.yml │ └── standard │ │ └── postgres │ │ ├── control │ │ ├── pg_hba.conf │ │ └── postgresql.conf │ │ └── default │ │ ├── 10 │ │ ├── pg_hba.conf │ │ └── postgresql.dblab.postgresql.conf │ │ ├── 11 │ │ ├── pg_hba.conf │ │ └── postgresql.dblab.postgresql.conf │ │ ├── 12 │ │ ├── pg_hba.conf │ │ └── postgresql.dblab.postgresql.conf │ │ ├── 13 │ │ ├── pg_hba.conf │ │ └── postgresql.dblab.postgresql.conf │ │ ├── 14 │ │ ├── pg_hba.conf │ │ └── postgresql.dblab.postgresql.conf │ │ ├── 15 │ │ ├── pg_hba.conf │ │ └── postgresql.dblab.postgresql.conf │ │ ├── 16 │ │ ├── pg_hba.conf │ │ └── postgresql.dblab.postgresql.conf │ │ ├── 17 │ │ ├── pg_hba.conf │ │ └── postgresql.dblab.postgresql.conf │ │ ├── 18 │ │ ├── pg_hba.conf │ │ └── postgresql.dblab.postgresql.conf │ │ └── 9.6 │ │ ├── pg_hba.conf │ │ └── postgresql.dblab.postgresql.conf ├── go.mod ├── go.sum ├── internal │ ├── billing │ │ └── billing.go │ ├── cloning │ │ ├── base.go │ │ ├── base_test.go │ │ ├── snapshots.go │ │ ├── snapshots_test.go │ │ ├── storage.go │ │ ├── storage_test.go │ │ └── wrapper.go │ ├── diagnostic │ │ ├── logs.go │ │ ├── logs_integration_test.go │ │ └── logs_test.go │ ├── embeddedui │ │ ├── embedded_ui.go │ │ ├── embedded_ui_integration_test.go │ │ └── embedded_ui_test.go │ ├── observer │ │ ├── artifacts.go │ │ ├── observer.go │ │ ├── observer_test.go │ │ ├── observing_clone.go │ │ ├── queries.go │ │ ├── session.go │ │ ├── session_test.go │ │ ├── sql.go │ │ └── stats.go │ ├── platform │ │ ├── platform.go │ │ └── platform_test.go │ ├── portfwd │ │ └── sshtunnel.go │ ├── provision │ │ ├── databases │ │ │ └── postgres │ │ │ │ ├── pgconfig │ │ │ │ ├── configuration.go │ │ │ │ └── configuration_test.go │ │ │ │ ├── postgres.go │ │ │ │ ├── postgres_mgmt.go │ │ │ │ ├── postgres_mgmt_test.go │ │ │ │ └── postgres_test.go │ │ ├── docker │ │ │ ├── docker.go │ │ │ └── docker_test.go │ │ ├── mode_local.go │ │ ├── mode_local_test.go │ │ ├── pool │ │ │ ├── block_devices.go │ │ │ ├── fstype_bsd.go │ │ │ ├── fstype_linux.go │ │ │ ├── fstype_windows.go │ │ │ ├── manager.go │ │ │ └── pool_manager.go │ │ ├── port_checker.go │ │ ├── provision.go │ │ ├── resources │ │ │ ├── appconfig.go │ │ │ ├── pool.go │ │ │ └── resources.go │ │ ├── runners │ │ │ └── runners.go │ │ └── thinclones │ │ │ ├── lvm │ │ │ ├── lvm.go │ │ │ └── lvmanager.go │ │ │ ├── manager.go │ │ │ └── zfs │ │ │ ├── branching.go │ │ │ ├── snapshots_filter.go │ │ │ ├── snapshots_filter_test.go │ │ │ ├── zfs.go │ │ │ └── zfs_test.go │ ├── retrieval │ │ ├── components │ │ │ └── components.go │ │ ├── config │ │ │ └── config.go │ │ ├── dbmarker │ │ │ └── dbmarker.go │ │ ├── engine │ │ │ ├── engine.go │ │ │ └── postgres │ │ │ │ ├── job_builder.go │ │ │ │ ├── logical │ │ │ │ ├── activity.go │ │ │ │ ├── activity_test.go │ │ │ │ ├── archive_types.go │ │ │ │ ├── archive_types_test.go │ │ │ │ ├── dump.go │ │ │ │ ├── dump_default.go │ │ │ │ ├── dump_integration_test.go │ │ │ │ ├── dump_rds.go │ │ │ │ ├── logical.go │ │ │ │ ├── logical_test.go │ │ │ │ ├── restore.go │ │ │ │ └── restore_test.go │ │ │ │ ├── physical │ │ │ │ ├── custom.go │ │ │ │ ├── custom_test.go │ │ │ │ ├── pgbackrest.go │ │ │ │ ├── pgbackrest_test.go │ │ │ │ ├── physical.go │ │ │ │ ├── physical_test.go │ │ │ │ ├── wal_g.go │ │ │ │ └── wal_g_test.go │ │ │ │ ├── snapshot │ │ │ │ ├── errors.go │ │ │ │ ├── logical.go │ │ │ │ ├── physical.go │ │ │ │ ├── physical_integration_test.go │ │ │ │ ├── physical_test.go │ │ │ │ └── snapshot.go │ │ │ │ └── tools │ │ │ │ ├── activity │ │ │ │ └── activity.go │ │ │ │ ├── cont │ │ │ │ ├── container.go │ │ │ │ └── container_test.go │ │ │ │ ├── db │ │ │ │ ├── image_content.go │ │ │ │ └── pg.go │ │ │ │ ├── defaults │ │ │ │ └── defaults.go │ │ │ │ ├── dump.go │ │ │ │ ├── fs │ │ │ │ └── tools.go │ │ │ │ ├── health │ │ │ │ └── healthcheck.go │ │ │ │ ├── pgtool │ │ │ │ └── pgtool.go │ │ │ │ ├── query │ │ │ │ └── preprocessor.go │ │ │ │ ├── tools.go │ │ │ │ └── tools_test.go │ │ ├── options │ │ │ └── options.go │ │ ├── refresh_errors.go │ │ ├── retrieval.go │ │ ├── retrieval_test.go │ │ ├── state.go │ │ ├── state_test.go │ │ ├── status │ │ │ └── retrieval_status.go │ │ ├── validator.go │ │ └── validator_test.go │ ├── runci │ │ ├── clone.go │ │ ├── config.go │ │ ├── handlers.go │ │ ├── server.go │ │ └── source │ │ │ ├── github.go │ │ │ └── source.go │ ├── srv │ │ ├── api │ │ │ ├── errors.go │ │ │ ├── errors_test.go │ │ │ └── util.go │ │ ├── billing.go │ │ ├── branch.go │ │ ├── branch_test.go │ │ ├── config.go │ │ ├── config │ │ │ └── config.go │ │ ├── config_test.go │ │ ├── mw │ │ │ ├── auth.go │ │ │ ├── auth_test.go │ │ │ └── logging.go │ │ ├── routes.go │ │ ├── server.go │ │ ├── ws.go │ │ ├── ws │ │ │ ├── ping.go │ │ │ ├── token.go │ │ │ └── token_test.go │ │ └── ws_test.go │ ├── telemetry │ │ ├── events.go │ │ └── telemetry.go │ ├── validator │ │ ├── validator.go │ │ └── validator_test.go │ └── webhooks │ │ ├── events.go │ │ └── webhooks.go ├── pkg │ ├── client │ │ ├── dblabapi │ │ │ ├── branch.go │ │ │ ├── client.go │ │ │ ├── client_test.go │ │ │ ├── clone.go │ │ │ ├── clone_test.go │ │ │ ├── snapshot.go │ │ │ ├── snapshot_test.go │ │ │ ├── status.go │ │ │ ├── status_test.go │ │ │ └── types │ │ │ │ ├── clone.go │ │ │ │ └── observation.go │ │ └── platform │ │ │ ├── client.go │ │ │ ├── client_test.go │ │ │ ├── observation.go │ │ │ ├── telemetry.go │ │ │ └── token.go │ ├── config │ │ ├── config.go │ │ ├── config_test.go │ │ ├── global │ │ │ └── config.go │ │ └── loaders.go │ ├── log │ │ ├── filtering.go │ │ └── log.go │ ├── models │ │ ├── admin.go │ │ ├── branch.go │ │ ├── clone.go │ │ ├── configuration.go │ │ ├── database.go │ │ ├── error.go │ │ ├── fs.go │ │ ├── instance_status.go │ │ ├── local_time.go │ │ ├── local_time_test.go │ │ ├── observation.go │ │ ├── retrieval.go │ │ ├── retrieval_test.go │ │ ├── snapshot.go │ │ ├── status.go │ │ └── sync.go │ └── util │ │ ├── backup │ │ ├── backup.go │ │ ├── backup_test.go │ │ ├── collection.go │ │ └── utils.go │ │ ├── branching │ │ ├── branching.go │ │ └── branching_test.go │ │ ├── bytes.go │ │ ├── clones.go │ │ ├── config.go │ │ ├── config_test.go │ │ ├── engine │ │ └── engine.go │ │ ├── networks │ │ ├── networks.go │ │ └── networks_test.go │ │ ├── pglog │ │ ├── activity.go │ │ └── activity_test.go │ │ ├── projection │ │ ├── common_test.go │ │ ├── helpers.go │ │ ├── json.go │ │ ├── load_json_test.go │ │ ├── load_yaml_test.go │ │ ├── multi_group_test.go │ │ ├── operations.go │ │ ├── store_json_test.go │ │ ├── store_yaml_test.go │ │ ├── tags.go │ │ ├── types.go │ │ └── yaml.go │ │ ├── ptypes │ │ └── mapping.go │ │ ├── slices.go │ │ ├── slices_test.go │ │ ├── testing.go │ │ ├── time.go │ │ ├── time_test.go │ │ └── yaml │ │ ├── custom.go │ │ ├── custom_test.go │ │ ├── default.go │ │ ├── mask.go │ │ ├── mask_test.go │ │ └── path.go ├── scripts │ ├── adjust_configs.sh │ ├── bash_autocomplete │ ├── ci_docker_build_push.sh │ ├── cleanup_zfs_snapshot.sh │ ├── cli_install.sh │ ├── create_zfs_snapshot.sh │ ├── do.sh │ ├── init-zfs-colima.sh │ └── preprocess_example.sh ├── test │ ├── 1.synthetic.sh │ ├── 2.logical_generic.sh │ ├── 3.physical_walg.sh │ ├── 4.physical_basebackup.sh │ ├── 5.logical_rds.sh │ ├── _cleanup.sh │ ├── _prerequisites.ubuntu.sh │ └── _zfs.file.sh ├── testdata │ └── testdata.go └── version │ ├── version.go │ └── version_test.go ├── translations ├── README.german.md ├── README.portuguese-br.md ├── README.russian.md ├── README.spanish.md ├── README.ukrainian.md └── unfinished-review-needed │ └── .gitkeep └── ui ├── .dockerignore ├── .gitignore ├── .gitlab-ci.yml ├── .npmrc ├── .prettierrc ├── .stylelintrc ├── README.md ├── cspell.json ├── package.json ├── packages ├── ce │ ├── .dockerignore │ ├── .env │ ├── .eslintrc │ ├── .gitlab-ci.yml │ ├── .npmrc │ ├── Dockerfile │ ├── ci_docker_build_push.sh │ ├── craco.config.js │ ├── cypress.config.ts │ ├── cypress │ │ └── e2e │ │ │ └── tabs.cy.js │ ├── docker-entrypoint.sh │ ├── nginx.conf │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ └── manifest.json │ ├── src │ │ ├── App │ │ │ ├── Auth │ │ │ │ ├── Card │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── Instance │ │ │ │ ├── Branches │ │ │ │ │ ├── Branch │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── CreateBranch │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Clones │ │ │ │ │ ├── Clone │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── CreateClone │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Configuration │ │ │ │ │ └── index.tsx │ │ │ │ ├── Logs │ │ │ │ │ └── index.tsx │ │ │ │ ├── Page │ │ │ │ │ └── index.tsx │ │ │ │ ├── Snapshots │ │ │ │ │ ├── CreateSnapshot │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Snapshot │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ ├── Layout │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── Menu │ │ │ │ ├── Header │ │ │ │ │ ├── icons │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── Instances │ │ │ │ │ ├── icons │ │ │ │ │ │ └── plus.svg │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── SignOutModal │ │ │ │ │ └── index.tsx │ │ │ │ ├── StickyTopBar │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── styles.module.scss │ │ │ │ │ └── utils │ │ │ │ │ │ └── index.ts │ │ │ │ ├── icons │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ └── index.tsx │ │ ├── api │ │ │ ├── branches │ │ │ │ ├── createBranch.ts │ │ │ │ ├── deleteBranch.ts │ │ │ │ ├── getBranches.ts │ │ │ │ └── getSnapshotList.ts │ │ │ ├── clones │ │ │ │ ├── createClone.ts │ │ │ │ ├── destroyClone.ts │ │ │ │ ├── getClone.ts │ │ │ │ ├── resetClone.ts │ │ │ │ └── updateClone.ts │ │ │ ├── configs │ │ │ │ ├── activateBilling.ts │ │ │ │ ├── getBillingStatus.ts │ │ │ │ ├── getConfig.ts │ │ │ │ ├── getFullConfig.ts │ │ │ │ ├── getSeImages.ts │ │ │ │ ├── testDbSource.ts │ │ │ │ └── updateConfig.ts │ │ │ ├── engine │ │ │ │ ├── getEngine.ts │ │ │ │ ├── getWSToken.ts │ │ │ │ └── initWS.ts │ │ │ ├── instances │ │ │ │ ├── fullRefresh.ts │ │ │ │ ├── getInstance.ts │ │ │ │ └── getInstanceRetrieval.ts │ │ │ └── snapshots │ │ │ │ ├── createSnapshot.ts │ │ │ │ ├── destroySnapshot.ts │ │ │ │ ├── getBranchSnapshot.ts │ │ │ │ └── getSnapshots.ts │ │ ├── components │ │ │ ├── NavPath │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ └── PageContainer │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ ├── config │ │ │ ├── env.ts │ │ │ └── routes.tsx │ │ ├── helpers │ │ │ ├── edition.ts │ │ │ ├── localStorage.ts │ │ │ └── request.ts │ │ ├── index.scss │ │ ├── index.tsx │ │ ├── react-app-env.d.ts │ │ └── stores │ │ │ └── app.ts │ └── tsconfig.json ├── platform │ └── README.md └── shared │ ├── .gitlab-ci.yml │ ├── .npmrc │ ├── components │ ├── AlertSnackbar │ │ ├── index.tsx │ │ └── useAlertSnackbar.tsx │ ├── Button │ │ └── index.tsx │ ├── Button2 │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── DestroyCloneModal │ │ └── index.tsx │ ├── DestroyCloneRestrictionModal │ │ └── index.tsx │ ├── ErrorStub │ │ └── index.tsx │ ├── FormattedText │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── GatewayLink │ │ └── index.tsx │ ├── HorizontalScrollContainer │ │ ├── index.tsx │ │ ├── types.ts │ │ └── utils.ts │ ├── ImportantText │ │ └── index.tsx │ ├── Link2 │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── MenuButton │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── Modal │ │ └── index.tsx │ ├── PageSpinner │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── ResetCloneModal │ │ └── index.tsx │ ├── SectionTitle │ │ └── index.tsx │ ├── Select │ │ └── index.tsx │ ├── SimpleModalControls │ │ └── index.tsx │ ├── Spinner │ │ ├── icon.tsx │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── Status │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── StubContainer │ │ └── index.tsx │ ├── StubSpinner │ │ └── index.tsx │ ├── StubSpinnerFlex │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── SyntaxHighlight │ │ └── index.tsx │ ├── Table │ │ ├── RowMenu │ │ │ └── index.tsx │ │ └── index.tsx │ ├── Text │ │ └── index.tsx │ ├── TextField │ │ └── index.tsx │ └── Tooltip │ │ └── index.tsx │ ├── config │ ├── index.ts │ └── links.ts │ ├── craco.config.js │ ├── helpers │ ├── getEntropy.ts │ ├── localStorage.ts │ └── request.ts │ ├── hooks │ └── useWindowDimensions.ts │ ├── icons │ ├── ArrowDropDown │ │ └── index.tsx │ ├── Circle │ │ └── index.tsx │ ├── External │ │ └── index.tsx │ ├── Info │ │ └── index.tsx │ ├── PostgresSQL │ │ └── index.tsx │ ├── Renewable │ │ └── index.tsx │ ├── Shield │ │ └── index.tsx │ └── Warning │ │ └── index.tsx │ ├── meta.json │ ├── package.json │ ├── pages │ ├── Branches │ │ ├── Branch │ │ │ ├── context.ts │ │ │ ├── index.tsx │ │ │ ├── stores │ │ │ │ └── Main.ts │ │ │ └── useCreatedStores.ts │ │ ├── components │ │ │ ├── BranchesTable │ │ │ │ └── index.tsx │ │ │ └── Modals │ │ │ │ ├── DeleteBranchModal │ │ │ │ └── index.tsx │ │ │ │ └── types.ts │ │ └── index.tsx │ ├── Clone │ │ ├── Status │ │ │ └── index.tsx │ │ ├── context.ts │ │ ├── index.tsx │ │ ├── stores │ │ │ └── Main.ts │ │ ├── useCreatedStores.ts │ │ └── utils │ │ │ └── index.ts │ ├── CreateBranch │ │ ├── index.tsx │ │ ├── stores │ │ │ └── Main.ts │ │ ├── useCreatedStores.ts │ │ ├── useForm.ts │ │ └── utils │ │ │ └── index.ts │ ├── CreateClone │ │ ├── index.tsx │ │ ├── stores │ │ │ └── Main.ts │ │ ├── styles.module.scss │ │ ├── useCreatedStores.ts │ │ ├── useForm.ts │ │ └── utils │ │ │ └── index.ts │ ├── CreateSnapshot │ │ ├── index.tsx │ │ ├── stores │ │ │ └── Main.ts │ │ ├── useCreatedStores.ts │ │ ├── useForm.ts │ │ └── utils │ │ │ └── index.ts │ ├── Instance │ │ ├── Clones │ │ │ ├── ClonesList │ │ │ │ ├── ConnectionModal │ │ │ │ │ └── index.tsx │ │ │ │ ├── MenuCell │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── utils.ts │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── ClonesModal │ │ │ │ ├── index.tsx │ │ │ │ └── utils.ts │ │ │ ├── Header │ │ │ │ ├── Item │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ └── index.tsx │ │ ├── Configuration │ │ │ ├── Header │ │ │ │ └── index.tsx │ │ │ ├── InputWithTooltip │ │ │ │ └── index.tsx │ │ │ ├── ResponseMessage │ │ │ │ └── index.tsx │ │ │ ├── configOptions.ts │ │ │ ├── index.tsx │ │ │ ├── styles.module.scss │ │ │ ├── tooltipText.tsx │ │ │ ├── useForm.ts │ │ │ └── utils │ │ │ │ └── index.ts │ │ ├── InactiveInstance │ │ │ ├── index.tsx │ │ │ └── utils.ts │ │ ├── Info │ │ │ ├── Connection │ │ │ │ ├── ConnectModal │ │ │ │ │ ├── Content │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── utils.ts │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ ├── Details │ │ │ │ └── index.tsx │ │ │ ├── Disks │ │ │ │ ├── Disk │ │ │ │ │ ├── ActionsMenu │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Marker │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── ProgressBar │ │ │ │ │ │ ├── PointerIcon.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Status │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ ├── Icons │ │ │ │ └── index.tsx │ │ │ ├── Retrieval │ │ │ │ ├── ConfirmFullRefreshModal │ │ │ │ │ └── index.tsx │ │ │ │ ├── RefreshFailedAlert │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── RetrievalModal │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── RetrievalTable │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── index.tsx │ │ │ │ └── utils.ts │ │ │ ├── Snapshots │ │ │ │ ├── Calendar │ │ │ │ │ ├── Day │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── utils.ts │ │ │ │ ├── TimeLine │ │ │ │ │ ├── Day │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── utils.ts │ │ │ ├── Status │ │ │ │ ├── InstanceResponseModal │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── index.tsx │ │ │ │ ├── styles.module.scss │ │ │ │ └── utils.ts │ │ │ ├── components │ │ │ │ ├── Property │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── Section │ │ │ │ │ └── index.tsx │ │ │ │ └── ValueStatus │ │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── Snapshots │ │ │ ├── components │ │ │ │ ├── SnapshotHeader │ │ │ │ │ └── index.tsx │ │ │ │ ├── SnapshotsList │ │ │ │ │ └── index.tsx │ │ │ │ ├── SnapshotsModal │ │ │ │ │ └── utils.ts │ │ │ │ └── SnapshotsTable │ │ │ │ │ └── index.tsx │ │ │ ├── index.tsx │ │ │ └── utils │ │ │ │ └── index.ts │ │ ├── SnapshotsModal │ │ │ └── index.tsx │ │ ├── Tabs │ │ │ ├── PlatformTabs.tsx │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── components │ │ │ ├── ErrorStub │ │ │ │ └── index.tsx │ │ │ ├── ModalReloadButton │ │ │ │ └── index.tsx │ │ │ └── Tags │ │ │ │ ├── Tag │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ ├── context.ts │ │ ├── index.tsx │ │ ├── stores │ │ │ ├── ClonesModal.ts │ │ │ ├── Main.ts │ │ │ └── SnapshotsModal.ts │ │ ├── styles.scss │ │ └── useCreatedStores.ts │ ├── Logs │ │ ├── Icons │ │ │ └── PlusIcon.tsx │ │ ├── constants │ │ │ └── index.ts │ │ ├── hooks │ │ │ └── useWsScroll.tsx │ │ ├── index.tsx │ │ ├── utils │ │ │ └── index.ts │ │ ├── wsLogs.ts │ │ └── wsSnackbar.ts │ └── Snapshots │ │ └── Snapshot │ │ ├── DestorySnapshotModal │ │ └── index.tsx │ │ ├── context.ts │ │ ├── index.tsx │ │ ├── stores │ │ └── Main.ts │ │ └── useCreatedStores.ts │ ├── react-app-env.d.ts │ ├── scripts │ ├── copy-assets.js │ └── pack.js │ ├── stores │ └── Snapshots.ts │ ├── styles │ ├── colors.ts │ ├── global.scss │ ├── icons.tsx │ ├── mixins.scss │ ├── styles.ts │ ├── theme.ts │ ├── vars.scss │ └── vars.ts │ ├── tsconfig.build.json │ ├── tsconfig.json │ ├── types │ ├── api │ │ ├── endpoints │ │ │ ├── createBranch.ts │ │ │ ├── createClone.ts │ │ │ ├── createSnapshot.ts │ │ │ ├── deleteBranch.ts │ │ │ ├── destroyClone.ts │ │ │ ├── destroySnapshot.ts │ │ │ ├── fullRefresh.ts │ │ │ ├── getBranchSnapshot.ts │ │ │ ├── getBranches.ts │ │ │ ├── getClone.ts │ │ │ ├── getConfig.ts │ │ │ ├── getEngine.ts │ │ │ ├── getFullConfig.ts │ │ │ ├── getInstance.ts │ │ │ ├── getInstanceRetrieval.ts │ │ │ ├── getSeImages.ts │ │ │ ├── getSnapshotList.ts │ │ │ ├── getSnapshots.ts │ │ │ ├── getWSToken.ts │ │ │ ├── initWS.ts │ │ │ ├── refreshInstance.ts │ │ │ ├── resetClone.ts │ │ │ ├── testDbSource.ts │ │ │ ├── updateClone.ts │ │ │ └── updateConfig.ts │ │ └── entities │ │ │ ├── branchSnapshot.ts │ │ │ ├── branchSnapshots.ts │ │ │ ├── clone.ts │ │ │ ├── config.ts │ │ │ ├── createBranch.ts │ │ │ ├── createSnapshot.ts │ │ │ ├── dbSource.ts │ │ │ ├── instance.ts │ │ │ ├── instanceRetrieval.ts │ │ │ ├── instanceState.ts │ │ │ ├── pool.ts │ │ │ ├── snapshot.ts │ │ │ └── wsToken.ts │ └── byte-size │ │ └── index.d.ts │ └── utils │ ├── api.ts │ ├── clone.ts │ ├── connection.ts │ ├── date.ts │ ├── instance.ts │ ├── numbers.ts │ ├── react.ts │ ├── snapshot.ts │ ├── strings.ts │ └── units.ts ├── pnpm-lock.yaml └── pnpm-workspace.yaml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitlab/agents/k8s-cluster-1/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/.gitlab/agents/k8s-cluster-1/config.yaml -------------------------------------------------------------------------------- /.gitlab/merge_request_templates/General.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/.gitlab/merge_request_templates/General.md -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.whitesource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/.whitesource -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/SECURITY.md -------------------------------------------------------------------------------- /assets/database-lab-dark-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/assets/database-lab-dark-mode.png -------------------------------------------------------------------------------- /assets/database-lab-dark-mode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/assets/database-lab-dark-mode.svg -------------------------------------------------------------------------------- /assets/database-lab-light-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/assets/database-lab-light-mode.png -------------------------------------------------------------------------------- /assets/database-lab-light-mode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/assets/database-lab-light-mode.svg -------------------------------------------------------------------------------- /assets/db-lab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/assets/db-lab.png -------------------------------------------------------------------------------- /assets/dle-demo-animated.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/assets/dle-demo-animated.gif -------------------------------------------------------------------------------- /assets/dle-logo-only-transparent-590x373.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/assets/dle-logo-only-transparent-590x373.png -------------------------------------------------------------------------------- /assets/dle-logo-only-white-bg-640x640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/assets/dle-logo-only-white-bg-640x640.png -------------------------------------------------------------------------------- /assets/dle-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/assets/dle-simple.png -------------------------------------------------------------------------------- /assets/dle-simple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/assets/dle-simple.svg -------------------------------------------------------------------------------- /assets/dle-square-1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/assets/dle-square-1024x1024.png -------------------------------------------------------------------------------- /assets/dle-square-220x220.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/assets/dle-square-220x220.png -------------------------------------------------------------------------------- /assets/dle-square-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/assets/dle-square-512x512.png -------------------------------------------------------------------------------- /assets/dle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/assets/dle.svg -------------------------------------------------------------------------------- /assets/dle_button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/assets/dle_button.svg -------------------------------------------------------------------------------- /assets/star.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/assets/star.gif -------------------------------------------------------------------------------- /engine/.dockerignore: -------------------------------------------------------------------------------- 1 | meta/ -------------------------------------------------------------------------------- /engine/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/.gitlab-ci.yml -------------------------------------------------------------------------------- /engine/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/.golangci.yml -------------------------------------------------------------------------------- /engine/Dockerfile.ci-checker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/Dockerfile.ci-checker -------------------------------------------------------------------------------- /engine/Dockerfile.dblab-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/Dockerfile.dblab-cli -------------------------------------------------------------------------------- /engine/Dockerfile.dblab-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/Dockerfile.dblab-server -------------------------------------------------------------------------------- /engine/Dockerfile.dblab-server-debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/Dockerfile.dblab-server-debug -------------------------------------------------------------------------------- /engine/Dockerfile.dblab-server-zfs08: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/Dockerfile.dblab-server-zfs08 -------------------------------------------------------------------------------- /engine/Dockerfile.swagger-ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/Dockerfile.swagger-ui -------------------------------------------------------------------------------- /engine/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/Makefile -------------------------------------------------------------------------------- /engine/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/api/README.md -------------------------------------------------------------------------------- /engine/api/postman/branching.aws.postgres.ai.postman_environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/api/postman/branching.aws.postgres.ai.postman_environment.json -------------------------------------------------------------------------------- /engine/api/postman/dblab_api.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/api/postman/dblab_api.postman_collection.json -------------------------------------------------------------------------------- /engine/api/postman/portman-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/api/postman/portman-cli.json -------------------------------------------------------------------------------- /engine/api/swagger-spec/dblab_openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/api/swagger-spec/dblab_openapi.yaml -------------------------------------------------------------------------------- /engine/api/swagger-spec/dblab_server_swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/api/swagger-spec/dblab_server_swagger.yaml -------------------------------------------------------------------------------- /engine/api/swagger-ui/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/api/swagger-ui/favicon-16x16.png -------------------------------------------------------------------------------- /engine/api/swagger-ui/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/api/swagger-ui/favicon-32x32.png -------------------------------------------------------------------------------- /engine/api/swagger-ui/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/api/swagger-ui/index.css -------------------------------------------------------------------------------- /engine/api/swagger-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/api/swagger-ui/index.html -------------------------------------------------------------------------------- /engine/api/swagger-ui/oauth2-redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/api/swagger-ui/oauth2-redirect.html -------------------------------------------------------------------------------- /engine/api/swagger-ui/swagger-initializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/api/swagger-ui/swagger-initializer.js -------------------------------------------------------------------------------- /engine/api/swagger-ui/swagger-ui-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/api/swagger-ui/swagger-ui-bundle.js -------------------------------------------------------------------------------- /engine/api/swagger-ui/swagger-ui-bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/api/swagger-ui/swagger-ui-bundle.js.map -------------------------------------------------------------------------------- /engine/api/swagger-ui/swagger-ui-es-bundle-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/api/swagger-ui/swagger-ui-es-bundle-core.js -------------------------------------------------------------------------------- /engine/api/swagger-ui/swagger-ui-es-bundle-core.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/api/swagger-ui/swagger-ui-es-bundle-core.js.map -------------------------------------------------------------------------------- /engine/api/swagger-ui/swagger-ui-es-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/api/swagger-ui/swagger-ui-es-bundle.js -------------------------------------------------------------------------------- /engine/api/swagger-ui/swagger-ui-es-bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/api/swagger-ui/swagger-ui-es-bundle.js.map -------------------------------------------------------------------------------- /engine/api/swagger-ui/swagger-ui-standalone-preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/api/swagger-ui/swagger-ui-standalone-preset.js -------------------------------------------------------------------------------- /engine/api/swagger-ui/swagger-ui-standalone-preset.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/api/swagger-ui/swagger-ui-standalone-preset.js.map -------------------------------------------------------------------------------- /engine/api/swagger-ui/swagger-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/api/swagger-ui/swagger-ui.css -------------------------------------------------------------------------------- /engine/api/swagger-ui/swagger-ui.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/api/swagger-ui/swagger-ui.css.map -------------------------------------------------------------------------------- /engine/api/swagger-ui/swagger-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/api/swagger-ui/swagger-ui.js -------------------------------------------------------------------------------- /engine/api/swagger-ui/swagger-ui.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/api/swagger-ui/swagger-ui.js.map -------------------------------------------------------------------------------- /engine/cmd/cli/commands/branch/actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/cmd/cli/commands/branch/actions.go -------------------------------------------------------------------------------- /engine/cmd/cli/commands/branch/command_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/cmd/cli/commands/branch/command_list.go -------------------------------------------------------------------------------- /engine/cmd/cli/commands/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/cmd/cli/commands/client.go -------------------------------------------------------------------------------- /engine/cmd/cli/commands/clone/actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/cmd/cli/commands/clone/actions.go -------------------------------------------------------------------------------- /engine/cmd/cli/commands/clone/command_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/cmd/cli/commands/clone/command_list.go -------------------------------------------------------------------------------- /engine/cmd/cli/commands/config/actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/cmd/cli/commands/config/actions.go -------------------------------------------------------------------------------- /engine/cmd/cli/commands/config/command_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/cmd/cli/commands/config/command_list.go -------------------------------------------------------------------------------- /engine/cmd/cli/commands/config/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/cmd/cli/commands/config/duration.go -------------------------------------------------------------------------------- /engine/cmd/cli/commands/config/environment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/cmd/cli/commands/config/environment.go -------------------------------------------------------------------------------- /engine/cmd/cli/commands/config/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/cmd/cli/commands/config/file.go -------------------------------------------------------------------------------- /engine/cmd/cli/commands/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/cmd/cli/commands/errors.go -------------------------------------------------------------------------------- /engine/cmd/cli/commands/global/actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/cmd/cli/commands/global/actions.go -------------------------------------------------------------------------------- /engine/cmd/cli/commands/global/command_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/cmd/cli/commands/global/command_list.go -------------------------------------------------------------------------------- /engine/cmd/cli/commands/instance/actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/cmd/cli/commands/instance/actions.go -------------------------------------------------------------------------------- /engine/cmd/cli/commands/instance/command_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/cmd/cli/commands/instance/command_list.go -------------------------------------------------------------------------------- /engine/cmd/cli/commands/port_forwarding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/cmd/cli/commands/port_forwarding.go -------------------------------------------------------------------------------- /engine/cmd/cli/commands/snapshot/actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/cmd/cli/commands/snapshot/actions.go -------------------------------------------------------------------------------- /engine/cmd/cli/commands/snapshot/command_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/cmd/cli/commands/snapshot/command_list.go -------------------------------------------------------------------------------- /engine/cmd/cli/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/cmd/cli/main.go -------------------------------------------------------------------------------- /engine/cmd/cli/templates/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/cmd/cli/templates/help.go -------------------------------------------------------------------------------- /engine/cmd/database-lab/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/cmd/database-lab/main.go -------------------------------------------------------------------------------- /engine/cmd/runci/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/cmd/runci/main.go -------------------------------------------------------------------------------- /engine/configs/config.example.ci_checker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/configs/config.example.ci_checker.yml -------------------------------------------------------------------------------- /engine/configs/config.example.logical_generic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/configs/config.example.logical_generic.yml -------------------------------------------------------------------------------- /engine/configs/config.example.logical_rds_iam.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/configs/config.example.logical_rds_iam.yml -------------------------------------------------------------------------------- /engine/configs/config.example.physical_generic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/configs/config.example.physical_generic.yml -------------------------------------------------------------------------------- /engine/configs/config.example.physical_pgbackrest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/configs/config.example.physical_pgbackrest.yml -------------------------------------------------------------------------------- /engine/configs/config.example.physical_walg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/configs/config.example.physical_walg.yml -------------------------------------------------------------------------------- /engine/configs/standard/postgres/control/pg_hba.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/configs/standard/postgres/control/pg_hba.conf -------------------------------------------------------------------------------- /engine/configs/standard/postgres/control/postgresql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/configs/standard/postgres/control/postgresql.conf -------------------------------------------------------------------------------- /engine/configs/standard/postgres/default/10/pg_hba.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/configs/standard/postgres/default/10/pg_hba.conf -------------------------------------------------------------------------------- /engine/configs/standard/postgres/default/10/postgresql.dblab.postgresql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/configs/standard/postgres/default/10/postgresql.dblab.postgresql.conf -------------------------------------------------------------------------------- /engine/configs/standard/postgres/default/11/pg_hba.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /engine/configs/standard/postgres/default/11/postgresql.dblab.postgresql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/configs/standard/postgres/default/11/postgresql.dblab.postgresql.conf -------------------------------------------------------------------------------- /engine/configs/standard/postgres/default/12/pg_hba.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/configs/standard/postgres/default/12/pg_hba.conf -------------------------------------------------------------------------------- /engine/configs/standard/postgres/default/12/postgresql.dblab.postgresql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/configs/standard/postgres/default/12/postgresql.dblab.postgresql.conf -------------------------------------------------------------------------------- /engine/configs/standard/postgres/default/13/pg_hba.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/configs/standard/postgres/default/13/pg_hba.conf -------------------------------------------------------------------------------- /engine/configs/standard/postgres/default/13/postgresql.dblab.postgresql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/configs/standard/postgres/default/13/postgresql.dblab.postgresql.conf -------------------------------------------------------------------------------- /engine/configs/standard/postgres/default/14/pg_hba.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/configs/standard/postgres/default/14/pg_hba.conf -------------------------------------------------------------------------------- /engine/configs/standard/postgres/default/14/postgresql.dblab.postgresql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/configs/standard/postgres/default/14/postgresql.dblab.postgresql.conf -------------------------------------------------------------------------------- /engine/configs/standard/postgres/default/15/pg_hba.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/configs/standard/postgres/default/15/pg_hba.conf -------------------------------------------------------------------------------- /engine/configs/standard/postgres/default/15/postgresql.dblab.postgresql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/configs/standard/postgres/default/15/postgresql.dblab.postgresql.conf -------------------------------------------------------------------------------- /engine/configs/standard/postgres/default/16/pg_hba.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/configs/standard/postgres/default/16/pg_hba.conf -------------------------------------------------------------------------------- /engine/configs/standard/postgres/default/16/postgresql.dblab.postgresql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/configs/standard/postgres/default/16/postgresql.dblab.postgresql.conf -------------------------------------------------------------------------------- /engine/configs/standard/postgres/default/17/pg_hba.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/configs/standard/postgres/default/17/pg_hba.conf -------------------------------------------------------------------------------- /engine/configs/standard/postgres/default/17/postgresql.dblab.postgresql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/configs/standard/postgres/default/17/postgresql.dblab.postgresql.conf -------------------------------------------------------------------------------- /engine/configs/standard/postgres/default/18/pg_hba.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/configs/standard/postgres/default/18/pg_hba.conf -------------------------------------------------------------------------------- /engine/configs/standard/postgres/default/18/postgresql.dblab.postgresql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/configs/standard/postgres/default/18/postgresql.dblab.postgresql.conf -------------------------------------------------------------------------------- /engine/configs/standard/postgres/default/9.6/pg_hba.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/configs/standard/postgres/default/9.6/pg_hba.conf -------------------------------------------------------------------------------- /engine/configs/standard/postgres/default/9.6/postgresql.dblab.postgresql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/configs/standard/postgres/default/9.6/postgresql.dblab.postgresql.conf -------------------------------------------------------------------------------- /engine/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/go.mod -------------------------------------------------------------------------------- /engine/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/go.sum -------------------------------------------------------------------------------- /engine/internal/billing/billing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/billing/billing.go -------------------------------------------------------------------------------- /engine/internal/cloning/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/cloning/base.go -------------------------------------------------------------------------------- /engine/internal/cloning/base_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/cloning/base_test.go -------------------------------------------------------------------------------- /engine/internal/cloning/snapshots.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/cloning/snapshots.go -------------------------------------------------------------------------------- /engine/internal/cloning/snapshots_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/cloning/snapshots_test.go -------------------------------------------------------------------------------- /engine/internal/cloning/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/cloning/storage.go -------------------------------------------------------------------------------- /engine/internal/cloning/storage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/cloning/storage_test.go -------------------------------------------------------------------------------- /engine/internal/cloning/wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/cloning/wrapper.go -------------------------------------------------------------------------------- /engine/internal/diagnostic/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/diagnostic/logs.go -------------------------------------------------------------------------------- /engine/internal/diagnostic/logs_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/diagnostic/logs_integration_test.go -------------------------------------------------------------------------------- /engine/internal/diagnostic/logs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/diagnostic/logs_test.go -------------------------------------------------------------------------------- /engine/internal/embeddedui/embedded_ui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/embeddedui/embedded_ui.go -------------------------------------------------------------------------------- /engine/internal/embeddedui/embedded_ui_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/embeddedui/embedded_ui_integration_test.go -------------------------------------------------------------------------------- /engine/internal/embeddedui/embedded_ui_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/embeddedui/embedded_ui_test.go -------------------------------------------------------------------------------- /engine/internal/observer/artifacts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/observer/artifacts.go -------------------------------------------------------------------------------- /engine/internal/observer/observer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/observer/observer.go -------------------------------------------------------------------------------- /engine/internal/observer/observer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/observer/observer_test.go -------------------------------------------------------------------------------- /engine/internal/observer/observing_clone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/observer/observing_clone.go -------------------------------------------------------------------------------- /engine/internal/observer/queries.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/observer/queries.go -------------------------------------------------------------------------------- /engine/internal/observer/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/observer/session.go -------------------------------------------------------------------------------- /engine/internal/observer/session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/observer/session_test.go -------------------------------------------------------------------------------- /engine/internal/observer/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/observer/sql.go -------------------------------------------------------------------------------- /engine/internal/observer/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/observer/stats.go -------------------------------------------------------------------------------- /engine/internal/platform/platform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/platform/platform.go -------------------------------------------------------------------------------- /engine/internal/platform/platform_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/platform/platform_test.go -------------------------------------------------------------------------------- /engine/internal/portfwd/sshtunnel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/portfwd/sshtunnel.go -------------------------------------------------------------------------------- /engine/internal/provision/databases/postgres/pgconfig/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/provision/databases/postgres/pgconfig/configuration.go -------------------------------------------------------------------------------- /engine/internal/provision/databases/postgres/pgconfig/configuration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/provision/databases/postgres/pgconfig/configuration_test.go -------------------------------------------------------------------------------- /engine/internal/provision/databases/postgres/postgres.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/provision/databases/postgres/postgres.go -------------------------------------------------------------------------------- /engine/internal/provision/databases/postgres/postgres_mgmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/provision/databases/postgres/postgres_mgmt.go -------------------------------------------------------------------------------- /engine/internal/provision/databases/postgres/postgres_mgmt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/provision/databases/postgres/postgres_mgmt_test.go -------------------------------------------------------------------------------- /engine/internal/provision/databases/postgres/postgres_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/provision/databases/postgres/postgres_test.go -------------------------------------------------------------------------------- /engine/internal/provision/docker/docker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/provision/docker/docker.go -------------------------------------------------------------------------------- /engine/internal/provision/docker/docker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/provision/docker/docker_test.go -------------------------------------------------------------------------------- /engine/internal/provision/mode_local.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/provision/mode_local.go -------------------------------------------------------------------------------- /engine/internal/provision/mode_local_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/provision/mode_local_test.go -------------------------------------------------------------------------------- /engine/internal/provision/pool/block_devices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/provision/pool/block_devices.go -------------------------------------------------------------------------------- /engine/internal/provision/pool/fstype_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/provision/pool/fstype_bsd.go -------------------------------------------------------------------------------- /engine/internal/provision/pool/fstype_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/provision/pool/fstype_linux.go -------------------------------------------------------------------------------- /engine/internal/provision/pool/fstype_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/provision/pool/fstype_windows.go -------------------------------------------------------------------------------- /engine/internal/provision/pool/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/provision/pool/manager.go -------------------------------------------------------------------------------- /engine/internal/provision/pool/pool_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/provision/pool/pool_manager.go -------------------------------------------------------------------------------- /engine/internal/provision/port_checker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/provision/port_checker.go -------------------------------------------------------------------------------- /engine/internal/provision/provision.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/provision/provision.go -------------------------------------------------------------------------------- /engine/internal/provision/resources/appconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/provision/resources/appconfig.go -------------------------------------------------------------------------------- /engine/internal/provision/resources/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/provision/resources/pool.go -------------------------------------------------------------------------------- /engine/internal/provision/resources/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/provision/resources/resources.go -------------------------------------------------------------------------------- /engine/internal/provision/runners/runners.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/provision/runners/runners.go -------------------------------------------------------------------------------- /engine/internal/provision/thinclones/lvm/lvm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/provision/thinclones/lvm/lvm.go -------------------------------------------------------------------------------- /engine/internal/provision/thinclones/lvm/lvmanager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/provision/thinclones/lvm/lvmanager.go -------------------------------------------------------------------------------- /engine/internal/provision/thinclones/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/provision/thinclones/manager.go -------------------------------------------------------------------------------- /engine/internal/provision/thinclones/zfs/branching.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/provision/thinclones/zfs/branching.go -------------------------------------------------------------------------------- /engine/internal/provision/thinclones/zfs/snapshots_filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/provision/thinclones/zfs/snapshots_filter.go -------------------------------------------------------------------------------- /engine/internal/provision/thinclones/zfs/snapshots_filter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/provision/thinclones/zfs/snapshots_filter_test.go -------------------------------------------------------------------------------- /engine/internal/provision/thinclones/zfs/zfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/provision/thinclones/zfs/zfs.go -------------------------------------------------------------------------------- /engine/internal/provision/thinclones/zfs/zfs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/provision/thinclones/zfs/zfs_test.go -------------------------------------------------------------------------------- /engine/internal/retrieval/components/components.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/components/components.go -------------------------------------------------------------------------------- /engine/internal/retrieval/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/config/config.go -------------------------------------------------------------------------------- /engine/internal/retrieval/dbmarker/dbmarker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/dbmarker/dbmarker.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/engine.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/job_builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/job_builder.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/logical/activity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/logical/activity.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/logical/activity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/logical/activity_test.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/logical/archive_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/logical/archive_types.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/logical/archive_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/logical/archive_types_test.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/logical/dump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/logical/dump.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/logical/dump_default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/logical/dump_default.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/logical/dump_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/logical/dump_integration_test.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/logical/dump_rds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/logical/dump_rds.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/logical/logical.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/logical/logical.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/logical/logical_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/logical/logical_test.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/logical/restore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/logical/restore.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/logical/restore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/logical/restore_test.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/physical/custom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/physical/custom.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/physical/custom_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/physical/custom_test.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/physical/pgbackrest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/physical/pgbackrest.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/physical/pgbackrest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/physical/pgbackrest_test.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/physical/physical.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/physical/physical.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/physical/physical_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/physical/physical_test.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/physical/wal_g.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/physical/wal_g.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/physical/wal_g_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/physical/wal_g_test.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/snapshot/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/snapshot/errors.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/snapshot/logical.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/snapshot/logical.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/snapshot/physical.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/snapshot/physical.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/snapshot/physical_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/snapshot/physical_integration_test.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/snapshot/physical_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/snapshot/physical_test.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/snapshot/snapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/snapshot/snapshot.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/tools/activity/activity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/tools/activity/activity.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/tools/cont/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/tools/cont/container.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/tools/cont/container_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/tools/cont/container_test.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/tools/db/image_content.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/tools/db/image_content.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/tools/db/pg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/tools/db/pg.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/tools/defaults/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/tools/defaults/defaults.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/tools/dump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/tools/dump.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/tools/fs/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/tools/fs/tools.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/tools/health/healthcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/tools/health/healthcheck.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/tools/pgtool/pgtool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/tools/pgtool/pgtool.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/tools/query/preprocessor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/tools/query/preprocessor.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/tools/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/tools/tools.go -------------------------------------------------------------------------------- /engine/internal/retrieval/engine/postgres/tools/tools_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/engine/postgres/tools/tools_test.go -------------------------------------------------------------------------------- /engine/internal/retrieval/options/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/options/options.go -------------------------------------------------------------------------------- /engine/internal/retrieval/refresh_errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/refresh_errors.go -------------------------------------------------------------------------------- /engine/internal/retrieval/retrieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/retrieval.go -------------------------------------------------------------------------------- /engine/internal/retrieval/retrieval_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/retrieval_test.go -------------------------------------------------------------------------------- /engine/internal/retrieval/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/state.go -------------------------------------------------------------------------------- /engine/internal/retrieval/state_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/state_test.go -------------------------------------------------------------------------------- /engine/internal/retrieval/status/retrieval_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/status/retrieval_status.go -------------------------------------------------------------------------------- /engine/internal/retrieval/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/validator.go -------------------------------------------------------------------------------- /engine/internal/retrieval/validator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/retrieval/validator_test.go -------------------------------------------------------------------------------- /engine/internal/runci/clone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/runci/clone.go -------------------------------------------------------------------------------- /engine/internal/runci/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/runci/config.go -------------------------------------------------------------------------------- /engine/internal/runci/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/runci/handlers.go -------------------------------------------------------------------------------- /engine/internal/runci/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/runci/server.go -------------------------------------------------------------------------------- /engine/internal/runci/source/github.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/runci/source/github.go -------------------------------------------------------------------------------- /engine/internal/runci/source/source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/runci/source/source.go -------------------------------------------------------------------------------- /engine/internal/srv/api/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/srv/api/errors.go -------------------------------------------------------------------------------- /engine/internal/srv/api/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/srv/api/errors_test.go -------------------------------------------------------------------------------- /engine/internal/srv/api/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/srv/api/util.go -------------------------------------------------------------------------------- /engine/internal/srv/billing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/srv/billing.go -------------------------------------------------------------------------------- /engine/internal/srv/branch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/srv/branch.go -------------------------------------------------------------------------------- /engine/internal/srv/branch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/srv/branch_test.go -------------------------------------------------------------------------------- /engine/internal/srv/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/srv/config.go -------------------------------------------------------------------------------- /engine/internal/srv/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/srv/config/config.go -------------------------------------------------------------------------------- /engine/internal/srv/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/srv/config_test.go -------------------------------------------------------------------------------- /engine/internal/srv/mw/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/srv/mw/auth.go -------------------------------------------------------------------------------- /engine/internal/srv/mw/auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/srv/mw/auth_test.go -------------------------------------------------------------------------------- /engine/internal/srv/mw/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/srv/mw/logging.go -------------------------------------------------------------------------------- /engine/internal/srv/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/srv/routes.go -------------------------------------------------------------------------------- /engine/internal/srv/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/srv/server.go -------------------------------------------------------------------------------- /engine/internal/srv/ws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/srv/ws.go -------------------------------------------------------------------------------- /engine/internal/srv/ws/ping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/srv/ws/ping.go -------------------------------------------------------------------------------- /engine/internal/srv/ws/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/srv/ws/token.go -------------------------------------------------------------------------------- /engine/internal/srv/ws/token_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/srv/ws/token_test.go -------------------------------------------------------------------------------- /engine/internal/srv/ws_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/srv/ws_test.go -------------------------------------------------------------------------------- /engine/internal/telemetry/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/telemetry/events.go -------------------------------------------------------------------------------- /engine/internal/telemetry/telemetry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/telemetry/telemetry.go -------------------------------------------------------------------------------- /engine/internal/validator/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/validator/validator.go -------------------------------------------------------------------------------- /engine/internal/validator/validator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/validator/validator_test.go -------------------------------------------------------------------------------- /engine/internal/webhooks/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/webhooks/events.go -------------------------------------------------------------------------------- /engine/internal/webhooks/webhooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/internal/webhooks/webhooks.go -------------------------------------------------------------------------------- /engine/pkg/client/dblabapi/branch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/client/dblabapi/branch.go -------------------------------------------------------------------------------- /engine/pkg/client/dblabapi/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/client/dblabapi/client.go -------------------------------------------------------------------------------- /engine/pkg/client/dblabapi/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/client/dblabapi/client_test.go -------------------------------------------------------------------------------- /engine/pkg/client/dblabapi/clone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/client/dblabapi/clone.go -------------------------------------------------------------------------------- /engine/pkg/client/dblabapi/clone_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/client/dblabapi/clone_test.go -------------------------------------------------------------------------------- /engine/pkg/client/dblabapi/snapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/client/dblabapi/snapshot.go -------------------------------------------------------------------------------- /engine/pkg/client/dblabapi/snapshot_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/client/dblabapi/snapshot_test.go -------------------------------------------------------------------------------- /engine/pkg/client/dblabapi/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/client/dblabapi/status.go -------------------------------------------------------------------------------- /engine/pkg/client/dblabapi/status_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/client/dblabapi/status_test.go -------------------------------------------------------------------------------- /engine/pkg/client/dblabapi/types/clone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/client/dblabapi/types/clone.go -------------------------------------------------------------------------------- /engine/pkg/client/dblabapi/types/observation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/client/dblabapi/types/observation.go -------------------------------------------------------------------------------- /engine/pkg/client/platform/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/client/platform/client.go -------------------------------------------------------------------------------- /engine/pkg/client/platform/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/client/platform/client_test.go -------------------------------------------------------------------------------- /engine/pkg/client/platform/observation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/client/platform/observation.go -------------------------------------------------------------------------------- /engine/pkg/client/platform/telemetry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/client/platform/telemetry.go -------------------------------------------------------------------------------- /engine/pkg/client/platform/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/client/platform/token.go -------------------------------------------------------------------------------- /engine/pkg/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/config/config.go -------------------------------------------------------------------------------- /engine/pkg/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/config/config_test.go -------------------------------------------------------------------------------- /engine/pkg/config/global/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/config/global/config.go -------------------------------------------------------------------------------- /engine/pkg/config/loaders.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/config/loaders.go -------------------------------------------------------------------------------- /engine/pkg/log/filtering.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/log/filtering.go -------------------------------------------------------------------------------- /engine/pkg/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/log/log.go -------------------------------------------------------------------------------- /engine/pkg/models/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/models/admin.go -------------------------------------------------------------------------------- /engine/pkg/models/branch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/models/branch.go -------------------------------------------------------------------------------- /engine/pkg/models/clone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/models/clone.go -------------------------------------------------------------------------------- /engine/pkg/models/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/models/configuration.go -------------------------------------------------------------------------------- /engine/pkg/models/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/models/database.go -------------------------------------------------------------------------------- /engine/pkg/models/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/models/error.go -------------------------------------------------------------------------------- /engine/pkg/models/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/models/fs.go -------------------------------------------------------------------------------- /engine/pkg/models/instance_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/models/instance_status.go -------------------------------------------------------------------------------- /engine/pkg/models/local_time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/models/local_time.go -------------------------------------------------------------------------------- /engine/pkg/models/local_time_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/models/local_time_test.go -------------------------------------------------------------------------------- /engine/pkg/models/observation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/models/observation.go -------------------------------------------------------------------------------- /engine/pkg/models/retrieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/models/retrieval.go -------------------------------------------------------------------------------- /engine/pkg/models/retrieval_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/models/retrieval_test.go -------------------------------------------------------------------------------- /engine/pkg/models/snapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/models/snapshot.go -------------------------------------------------------------------------------- /engine/pkg/models/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/models/status.go -------------------------------------------------------------------------------- /engine/pkg/models/sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/models/sync.go -------------------------------------------------------------------------------- /engine/pkg/util/backup/backup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/util/backup/backup.go -------------------------------------------------------------------------------- /engine/pkg/util/backup/backup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/util/backup/backup_test.go -------------------------------------------------------------------------------- /engine/pkg/util/backup/collection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/util/backup/collection.go -------------------------------------------------------------------------------- /engine/pkg/util/backup/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/util/backup/utils.go -------------------------------------------------------------------------------- /engine/pkg/util/branching/branching.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/util/branching/branching.go -------------------------------------------------------------------------------- /engine/pkg/util/branching/branching_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/util/branching/branching_test.go -------------------------------------------------------------------------------- /engine/pkg/util/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/util/bytes.go -------------------------------------------------------------------------------- /engine/pkg/util/clones.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/util/clones.go -------------------------------------------------------------------------------- /engine/pkg/util/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/util/config.go -------------------------------------------------------------------------------- /engine/pkg/util/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/util/config_test.go -------------------------------------------------------------------------------- /engine/pkg/util/engine/engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/util/engine/engine.go -------------------------------------------------------------------------------- /engine/pkg/util/networks/networks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/util/networks/networks.go -------------------------------------------------------------------------------- /engine/pkg/util/networks/networks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/util/networks/networks_test.go -------------------------------------------------------------------------------- /engine/pkg/util/pglog/activity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/util/pglog/activity.go -------------------------------------------------------------------------------- /engine/pkg/util/pglog/activity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/util/pglog/activity_test.go -------------------------------------------------------------------------------- /engine/pkg/util/projection/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/util/projection/common_test.go -------------------------------------------------------------------------------- /engine/pkg/util/projection/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/util/projection/helpers.go -------------------------------------------------------------------------------- /engine/pkg/util/projection/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/util/projection/json.go -------------------------------------------------------------------------------- /engine/pkg/util/projection/load_json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/util/projection/load_json_test.go -------------------------------------------------------------------------------- /engine/pkg/util/projection/load_yaml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/util/projection/load_yaml_test.go -------------------------------------------------------------------------------- /engine/pkg/util/projection/multi_group_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/util/projection/multi_group_test.go -------------------------------------------------------------------------------- /engine/pkg/util/projection/operations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/util/projection/operations.go -------------------------------------------------------------------------------- /engine/pkg/util/projection/store_json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/util/projection/store_json_test.go -------------------------------------------------------------------------------- /engine/pkg/util/projection/store_yaml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/util/projection/store_yaml_test.go -------------------------------------------------------------------------------- /engine/pkg/util/projection/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/util/projection/tags.go -------------------------------------------------------------------------------- /engine/pkg/util/projection/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/util/projection/types.go -------------------------------------------------------------------------------- /engine/pkg/util/projection/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/util/projection/yaml.go -------------------------------------------------------------------------------- /engine/pkg/util/ptypes/mapping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/util/ptypes/mapping.go -------------------------------------------------------------------------------- /engine/pkg/util/slices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/util/slices.go -------------------------------------------------------------------------------- /engine/pkg/util/slices_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/util/slices_test.go -------------------------------------------------------------------------------- /engine/pkg/util/testing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/util/testing.go -------------------------------------------------------------------------------- /engine/pkg/util/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/util/time.go -------------------------------------------------------------------------------- /engine/pkg/util/time_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/util/time_test.go -------------------------------------------------------------------------------- /engine/pkg/util/yaml/custom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/util/yaml/custom.go -------------------------------------------------------------------------------- /engine/pkg/util/yaml/custom_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/util/yaml/custom_test.go -------------------------------------------------------------------------------- /engine/pkg/util/yaml/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/util/yaml/default.go -------------------------------------------------------------------------------- /engine/pkg/util/yaml/mask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/util/yaml/mask.go -------------------------------------------------------------------------------- /engine/pkg/util/yaml/mask_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/util/yaml/mask_test.go -------------------------------------------------------------------------------- /engine/pkg/util/yaml/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/pkg/util/yaml/path.go -------------------------------------------------------------------------------- /engine/scripts/adjust_configs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/scripts/adjust_configs.sh -------------------------------------------------------------------------------- /engine/scripts/bash_autocomplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/scripts/bash_autocomplete -------------------------------------------------------------------------------- /engine/scripts/ci_docker_build_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/scripts/ci_docker_build_push.sh -------------------------------------------------------------------------------- /engine/scripts/cleanup_zfs_snapshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/scripts/cleanup_zfs_snapshot.sh -------------------------------------------------------------------------------- /engine/scripts/cli_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/scripts/cli_install.sh -------------------------------------------------------------------------------- /engine/scripts/create_zfs_snapshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/scripts/create_zfs_snapshot.sh -------------------------------------------------------------------------------- /engine/scripts/do.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/scripts/do.sh -------------------------------------------------------------------------------- /engine/scripts/init-zfs-colima.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/scripts/init-zfs-colima.sh -------------------------------------------------------------------------------- /engine/scripts/preprocess_example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/scripts/preprocess_example.sh -------------------------------------------------------------------------------- /engine/test/1.synthetic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/test/1.synthetic.sh -------------------------------------------------------------------------------- /engine/test/2.logical_generic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/test/2.logical_generic.sh -------------------------------------------------------------------------------- /engine/test/3.physical_walg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/test/3.physical_walg.sh -------------------------------------------------------------------------------- /engine/test/4.physical_basebackup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/test/4.physical_basebackup.sh -------------------------------------------------------------------------------- /engine/test/5.logical_rds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/test/5.logical_rds.sh -------------------------------------------------------------------------------- /engine/test/_cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/test/_cleanup.sh -------------------------------------------------------------------------------- /engine/test/_prerequisites.ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/test/_prerequisites.ubuntu.sh -------------------------------------------------------------------------------- /engine/test/_zfs.file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/test/_zfs.file.sh -------------------------------------------------------------------------------- /engine/testdata/testdata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/testdata/testdata.go -------------------------------------------------------------------------------- /engine/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/version/version.go -------------------------------------------------------------------------------- /engine/version/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/engine/version/version_test.go -------------------------------------------------------------------------------- /translations/README.german.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/translations/README.german.md -------------------------------------------------------------------------------- /translations/README.portuguese-br.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/translations/README.portuguese-br.md -------------------------------------------------------------------------------- /translations/README.russian.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/translations/README.russian.md -------------------------------------------------------------------------------- /translations/README.spanish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/translations/README.spanish.md -------------------------------------------------------------------------------- /translations/README.ukrainian.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/translations/README.ukrainian.md -------------------------------------------------------------------------------- /translations/unfinished-review-needed/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ui/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/.dockerignore -------------------------------------------------------------------------------- /ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/.gitignore -------------------------------------------------------------------------------- /ui/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/.gitlab-ci.yml -------------------------------------------------------------------------------- /ui/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/.npmrc -------------------------------------------------------------------------------- /ui/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/.prettierrc -------------------------------------------------------------------------------- /ui/.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/.stylelintrc -------------------------------------------------------------------------------- /ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/README.md -------------------------------------------------------------------------------- /ui/cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/cspell.json -------------------------------------------------------------------------------- /ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/package.json -------------------------------------------------------------------------------- /ui/packages/ce/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/.dockerignore -------------------------------------------------------------------------------- /ui/packages/ce/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/.env -------------------------------------------------------------------------------- /ui/packages/ce/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/.eslintrc -------------------------------------------------------------------------------- /ui/packages/ce/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/.gitlab-ci.yml -------------------------------------------------------------------------------- /ui/packages/ce/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/.npmrc -------------------------------------------------------------------------------- /ui/packages/ce/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/Dockerfile -------------------------------------------------------------------------------- /ui/packages/ce/ci_docker_build_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/ci_docker_build_push.sh -------------------------------------------------------------------------------- /ui/packages/ce/craco.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/craco.config.js -------------------------------------------------------------------------------- /ui/packages/ce/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/cypress.config.ts -------------------------------------------------------------------------------- /ui/packages/ce/cypress/e2e/tabs.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/cypress/e2e/tabs.cy.js -------------------------------------------------------------------------------- /ui/packages/ce/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/docker-entrypoint.sh -------------------------------------------------------------------------------- /ui/packages/ce/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/nginx.conf -------------------------------------------------------------------------------- /ui/packages/ce/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/package.json -------------------------------------------------------------------------------- /ui/packages/ce/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/public/favicon.ico -------------------------------------------------------------------------------- /ui/packages/ce/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/public/index.html -------------------------------------------------------------------------------- /ui/packages/ce/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/public/manifest.json -------------------------------------------------------------------------------- /ui/packages/ce/src/App/Auth/Card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/App/Auth/Card/index.tsx -------------------------------------------------------------------------------- /ui/packages/ce/src/App/Auth/Card/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/App/Auth/Card/styles.module.scss -------------------------------------------------------------------------------- /ui/packages/ce/src/App/Auth/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/App/Auth/index.tsx -------------------------------------------------------------------------------- /ui/packages/ce/src/App/Auth/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/App/Auth/styles.module.scss -------------------------------------------------------------------------------- /ui/packages/ce/src/App/Instance/Branches/Branch/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/App/Instance/Branches/Branch/index.tsx -------------------------------------------------------------------------------- /ui/packages/ce/src/App/Instance/Branches/CreateBranch/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/App/Instance/Branches/CreateBranch/index.tsx -------------------------------------------------------------------------------- /ui/packages/ce/src/App/Instance/Branches/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/App/Instance/Branches/index.tsx -------------------------------------------------------------------------------- /ui/packages/ce/src/App/Instance/Clones/Clone/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/App/Instance/Clones/Clone/index.tsx -------------------------------------------------------------------------------- /ui/packages/ce/src/App/Instance/Clones/CreateClone/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/App/Instance/Clones/CreateClone/index.tsx -------------------------------------------------------------------------------- /ui/packages/ce/src/App/Instance/Clones/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/App/Instance/Clones/index.tsx -------------------------------------------------------------------------------- /ui/packages/ce/src/App/Instance/Configuration/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/App/Instance/Configuration/index.tsx -------------------------------------------------------------------------------- /ui/packages/ce/src/App/Instance/Logs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/App/Instance/Logs/index.tsx -------------------------------------------------------------------------------- /ui/packages/ce/src/App/Instance/Page/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/App/Instance/Page/index.tsx -------------------------------------------------------------------------------- /ui/packages/ce/src/App/Instance/Snapshots/CreateSnapshot/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/App/Instance/Snapshots/CreateSnapshot/index.tsx -------------------------------------------------------------------------------- /ui/packages/ce/src/App/Instance/Snapshots/Snapshot/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/App/Instance/Snapshots/Snapshot/index.tsx -------------------------------------------------------------------------------- /ui/packages/ce/src/App/Instance/Snapshots/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/App/Instance/Snapshots/index.tsx -------------------------------------------------------------------------------- /ui/packages/ce/src/App/Instance/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/App/Instance/index.tsx -------------------------------------------------------------------------------- /ui/packages/ce/src/App/Layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/App/Layout/index.tsx -------------------------------------------------------------------------------- /ui/packages/ce/src/App/Layout/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/App/Layout/styles.module.scss -------------------------------------------------------------------------------- /ui/packages/ce/src/App/Menu/Header/icons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/App/Menu/Header/icons/index.tsx -------------------------------------------------------------------------------- /ui/packages/ce/src/App/Menu/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/App/Menu/Header/index.tsx -------------------------------------------------------------------------------- /ui/packages/ce/src/App/Menu/Header/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/App/Menu/Header/styles.module.scss -------------------------------------------------------------------------------- /ui/packages/ce/src/App/Menu/Instances/icons/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/App/Menu/Instances/icons/plus.svg -------------------------------------------------------------------------------- /ui/packages/ce/src/App/Menu/Instances/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/App/Menu/Instances/index.tsx -------------------------------------------------------------------------------- /ui/packages/ce/src/App/Menu/Instances/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/App/Menu/Instances/styles.module.scss -------------------------------------------------------------------------------- /ui/packages/ce/src/App/Menu/SignOutModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/App/Menu/SignOutModal/index.tsx -------------------------------------------------------------------------------- /ui/packages/ce/src/App/Menu/StickyTopBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/App/Menu/StickyTopBar/index.tsx -------------------------------------------------------------------------------- /ui/packages/ce/src/App/Menu/StickyTopBar/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/App/Menu/StickyTopBar/styles.module.scss -------------------------------------------------------------------------------- /ui/packages/ce/src/App/Menu/StickyTopBar/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/App/Menu/StickyTopBar/utils/index.ts -------------------------------------------------------------------------------- /ui/packages/ce/src/App/Menu/icons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/App/Menu/icons/index.tsx -------------------------------------------------------------------------------- /ui/packages/ce/src/App/Menu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/App/Menu/index.tsx -------------------------------------------------------------------------------- /ui/packages/ce/src/App/Menu/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/App/Menu/styles.module.scss -------------------------------------------------------------------------------- /ui/packages/ce/src/App/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/App/index.tsx -------------------------------------------------------------------------------- /ui/packages/ce/src/api/branches/createBranch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/api/branches/createBranch.ts -------------------------------------------------------------------------------- /ui/packages/ce/src/api/branches/deleteBranch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/api/branches/deleteBranch.ts -------------------------------------------------------------------------------- /ui/packages/ce/src/api/branches/getBranches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/api/branches/getBranches.ts -------------------------------------------------------------------------------- /ui/packages/ce/src/api/branches/getSnapshotList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/api/branches/getSnapshotList.ts -------------------------------------------------------------------------------- /ui/packages/ce/src/api/clones/createClone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/api/clones/createClone.ts -------------------------------------------------------------------------------- /ui/packages/ce/src/api/clones/destroyClone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/api/clones/destroyClone.ts -------------------------------------------------------------------------------- /ui/packages/ce/src/api/clones/getClone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/api/clones/getClone.ts -------------------------------------------------------------------------------- /ui/packages/ce/src/api/clones/resetClone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/api/clones/resetClone.ts -------------------------------------------------------------------------------- /ui/packages/ce/src/api/clones/updateClone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/api/clones/updateClone.ts -------------------------------------------------------------------------------- /ui/packages/ce/src/api/configs/activateBilling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/api/configs/activateBilling.ts -------------------------------------------------------------------------------- /ui/packages/ce/src/api/configs/getBillingStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/api/configs/getBillingStatus.ts -------------------------------------------------------------------------------- /ui/packages/ce/src/api/configs/getConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/api/configs/getConfig.ts -------------------------------------------------------------------------------- /ui/packages/ce/src/api/configs/getFullConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/api/configs/getFullConfig.ts -------------------------------------------------------------------------------- /ui/packages/ce/src/api/configs/getSeImages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/api/configs/getSeImages.ts -------------------------------------------------------------------------------- /ui/packages/ce/src/api/configs/testDbSource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/api/configs/testDbSource.ts -------------------------------------------------------------------------------- /ui/packages/ce/src/api/configs/updateConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/api/configs/updateConfig.ts -------------------------------------------------------------------------------- /ui/packages/ce/src/api/engine/getEngine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/api/engine/getEngine.ts -------------------------------------------------------------------------------- /ui/packages/ce/src/api/engine/getWSToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/api/engine/getWSToken.ts -------------------------------------------------------------------------------- /ui/packages/ce/src/api/engine/initWS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/api/engine/initWS.ts -------------------------------------------------------------------------------- /ui/packages/ce/src/api/instances/fullRefresh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/api/instances/fullRefresh.ts -------------------------------------------------------------------------------- /ui/packages/ce/src/api/instances/getInstance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/api/instances/getInstance.ts -------------------------------------------------------------------------------- /ui/packages/ce/src/api/instances/getInstanceRetrieval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/api/instances/getInstanceRetrieval.ts -------------------------------------------------------------------------------- /ui/packages/ce/src/api/snapshots/createSnapshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/api/snapshots/createSnapshot.ts -------------------------------------------------------------------------------- /ui/packages/ce/src/api/snapshots/destroySnapshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/api/snapshots/destroySnapshot.ts -------------------------------------------------------------------------------- /ui/packages/ce/src/api/snapshots/getBranchSnapshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/api/snapshots/getBranchSnapshot.ts -------------------------------------------------------------------------------- /ui/packages/ce/src/api/snapshots/getSnapshots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/api/snapshots/getSnapshots.ts -------------------------------------------------------------------------------- /ui/packages/ce/src/components/NavPath/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/components/NavPath/index.tsx -------------------------------------------------------------------------------- /ui/packages/ce/src/components/NavPath/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/components/NavPath/styles.module.scss -------------------------------------------------------------------------------- /ui/packages/ce/src/components/PageContainer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/components/PageContainer/index.tsx -------------------------------------------------------------------------------- /ui/packages/ce/src/components/PageContainer/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/components/PageContainer/styles.module.scss -------------------------------------------------------------------------------- /ui/packages/ce/src/config/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/config/env.ts -------------------------------------------------------------------------------- /ui/packages/ce/src/config/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/config/routes.tsx -------------------------------------------------------------------------------- /ui/packages/ce/src/helpers/edition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/helpers/edition.ts -------------------------------------------------------------------------------- /ui/packages/ce/src/helpers/localStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/helpers/localStorage.ts -------------------------------------------------------------------------------- /ui/packages/ce/src/helpers/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/helpers/request.ts -------------------------------------------------------------------------------- /ui/packages/ce/src/index.scss: -------------------------------------------------------------------------------- 1 | @import '@postgres.ai/shared/styles/global'; 2 | -------------------------------------------------------------------------------- /ui/packages/ce/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/index.tsx -------------------------------------------------------------------------------- /ui/packages/ce/src/react-app-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/react-app-env.d.ts -------------------------------------------------------------------------------- /ui/packages/ce/src/stores/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/src/stores/app.ts -------------------------------------------------------------------------------- /ui/packages/ce/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/ce/tsconfig.json -------------------------------------------------------------------------------- /ui/packages/platform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/platform/README.md -------------------------------------------------------------------------------- /ui/packages/shared/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/.gitlab-ci.yml -------------------------------------------------------------------------------- /ui/packages/shared/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/.npmrc -------------------------------------------------------------------------------- /ui/packages/shared/components/AlertSnackbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/AlertSnackbar/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/components/AlertSnackbar/useAlertSnackbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/AlertSnackbar/useAlertSnackbar.tsx -------------------------------------------------------------------------------- /ui/packages/shared/components/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/Button/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/components/Button2/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/Button2/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/components/Button2/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/Button2/styles.module.scss -------------------------------------------------------------------------------- /ui/packages/shared/components/DestroyCloneModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/DestroyCloneModal/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/components/DestroyCloneRestrictionModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/DestroyCloneRestrictionModal/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/components/ErrorStub/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/ErrorStub/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/components/FormattedText/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/FormattedText/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/components/FormattedText/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/FormattedText/styles.module.scss -------------------------------------------------------------------------------- /ui/packages/shared/components/GatewayLink/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/GatewayLink/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/components/HorizontalScrollContainer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/HorizontalScrollContainer/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/components/HorizontalScrollContainer/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/HorizontalScrollContainer/types.ts -------------------------------------------------------------------------------- /ui/packages/shared/components/HorizontalScrollContainer/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/HorizontalScrollContainer/utils.ts -------------------------------------------------------------------------------- /ui/packages/shared/components/ImportantText/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/ImportantText/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/components/Link2/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/Link2/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/components/Link2/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/Link2/styles.module.scss -------------------------------------------------------------------------------- /ui/packages/shared/components/MenuButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/MenuButton/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/components/MenuButton/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/MenuButton/styles.module.scss -------------------------------------------------------------------------------- /ui/packages/shared/components/Modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/Modal/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/components/PageSpinner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/PageSpinner/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/components/PageSpinner/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/PageSpinner/styles.module.scss -------------------------------------------------------------------------------- /ui/packages/shared/components/ResetCloneModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/ResetCloneModal/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/components/SectionTitle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/SectionTitle/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/components/Select/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/Select/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/components/SimpleModalControls/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/SimpleModalControls/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/components/Spinner/icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/Spinner/icon.tsx -------------------------------------------------------------------------------- /ui/packages/shared/components/Spinner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/Spinner/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/components/Spinner/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/Spinner/styles.module.scss -------------------------------------------------------------------------------- /ui/packages/shared/components/Status/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/Status/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/components/Status/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/Status/styles.module.scss -------------------------------------------------------------------------------- /ui/packages/shared/components/StubContainer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/StubContainer/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/components/StubSpinner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/StubSpinner/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/components/StubSpinnerFlex/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/StubSpinnerFlex/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/components/StubSpinnerFlex/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/StubSpinnerFlex/styles.module.scss -------------------------------------------------------------------------------- /ui/packages/shared/components/SyntaxHighlight/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/SyntaxHighlight/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/components/Table/RowMenu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/Table/RowMenu/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/components/Table/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/Table/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/components/Text/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/Text/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/components/TextField/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/TextField/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/components/Tooltip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/components/Tooltip/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/config/index.ts -------------------------------------------------------------------------------- /ui/packages/shared/config/links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/config/links.ts -------------------------------------------------------------------------------- /ui/packages/shared/craco.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/craco.config.js -------------------------------------------------------------------------------- /ui/packages/shared/helpers/getEntropy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/helpers/getEntropy.ts -------------------------------------------------------------------------------- /ui/packages/shared/helpers/localStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/helpers/localStorage.ts -------------------------------------------------------------------------------- /ui/packages/shared/helpers/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/helpers/request.ts -------------------------------------------------------------------------------- /ui/packages/shared/hooks/useWindowDimensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/hooks/useWindowDimensions.ts -------------------------------------------------------------------------------- /ui/packages/shared/icons/ArrowDropDown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/icons/ArrowDropDown/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/icons/Circle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/icons/Circle/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/icons/External/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/icons/External/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/icons/Info/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/icons/Info/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/icons/PostgresSQL/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/icons/PostgresSQL/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/icons/Renewable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/icons/Renewable/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/icons/Shield/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/icons/Shield/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/icons/Warning/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/icons/Warning/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/meta.json: -------------------------------------------------------------------------------- 1 | {"buildDate":1634829055606} 2 | -------------------------------------------------------------------------------- /ui/packages/shared/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/package.json -------------------------------------------------------------------------------- /ui/packages/shared/pages/Branches/Branch/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Branches/Branch/context.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/Branches/Branch/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Branches/Branch/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Branches/Branch/stores/Main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Branches/Branch/stores/Main.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/Branches/Branch/useCreatedStores.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Branches/Branch/useCreatedStores.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/Branches/components/BranchesTable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Branches/components/BranchesTable/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Branches/components/Modals/DeleteBranchModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Branches/components/Modals/DeleteBranchModal/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Branches/components/Modals/types.ts: -------------------------------------------------------------------------------- 1 | export interface ModalProps { 2 | isOpen: boolean 3 | onClose: () => void 4 | } 5 | -------------------------------------------------------------------------------- /ui/packages/shared/pages/Branches/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Branches/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Clone/Status/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Clone/Status/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Clone/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Clone/context.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/Clone/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Clone/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Clone/stores/Main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Clone/stores/Main.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/Clone/useCreatedStores.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Clone/useCreatedStores.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/Clone/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Clone/utils/index.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/CreateBranch/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/CreateBranch/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/CreateBranch/stores/Main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/CreateBranch/stores/Main.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/CreateBranch/useCreatedStores.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/CreateBranch/useCreatedStores.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/CreateBranch/useForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/CreateBranch/useForm.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/CreateBranch/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/CreateBranch/utils/index.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/CreateClone/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/CreateClone/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/CreateClone/stores/Main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/CreateClone/stores/Main.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/CreateClone/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/CreateClone/styles.module.scss -------------------------------------------------------------------------------- /ui/packages/shared/pages/CreateClone/useCreatedStores.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/CreateClone/useCreatedStores.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/CreateClone/useForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/CreateClone/useForm.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/CreateClone/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/CreateClone/utils/index.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/CreateSnapshot/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/CreateSnapshot/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/CreateSnapshot/stores/Main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/CreateSnapshot/stores/Main.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/CreateSnapshot/useCreatedStores.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/CreateSnapshot/useCreatedStores.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/CreateSnapshot/useForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/CreateSnapshot/useForm.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/CreateSnapshot/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/CreateSnapshot/utils/index.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Clones/ClonesList/ConnectionModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Clones/ClonesList/ConnectionModal/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Clones/ClonesList/MenuCell/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Clones/ClonesList/MenuCell/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Clones/ClonesList/MenuCell/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Clones/ClonesList/MenuCell/utils.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Clones/ClonesList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Clones/ClonesList/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Clones/ClonesList/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Clones/ClonesList/styles.module.scss -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Clones/ClonesModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Clones/ClonesModal/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Clones/ClonesModal/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Clones/ClonesModal/utils.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Clones/Header/Item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Clones/Header/Item/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Clones/Header/Item/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Clones/Header/Item/styles.module.scss -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Clones/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Clones/Header/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Clones/Header/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Clones/Header/styles.module.scss -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Clones/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Clones/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Configuration/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Configuration/Header/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Configuration/InputWithTooltip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Configuration/InputWithTooltip/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Configuration/ResponseMessage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Configuration/ResponseMessage/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Configuration/configOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Configuration/configOptions.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Configuration/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Configuration/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Configuration/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Configuration/styles.module.scss -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Configuration/tooltipText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Configuration/tooltipText.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Configuration/useForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Configuration/useForm.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Configuration/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Configuration/utils/index.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/InactiveInstance/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/InactiveInstance/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/InactiveInstance/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/InactiveInstance/utils.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Info/Connection/ConnectModal/Content/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Info/Connection/ConnectModal/Content/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Info/Connection/ConnectModal/Content/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Info/Connection/ConnectModal/Content/utils.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Info/Connection/ConnectModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Info/Connection/ConnectModal/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Info/Connection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Info/Connection/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Info/Details/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Info/Details/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Info/Disks/Disk/ActionsMenu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Info/Disks/Disk/ActionsMenu/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Info/Disks/Disk/Marker/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Info/Disks/Disk/Marker/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Info/Disks/Disk/ProgressBar/PointerIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Info/Disks/Disk/ProgressBar/PointerIcon.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Info/Disks/Disk/ProgressBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Info/Disks/Disk/ProgressBar/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Info/Disks/Disk/Status/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Info/Disks/Disk/Status/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Info/Disks/Disk/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Info/Disks/Disk/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Info/Disks/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Info/Disks/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Info/Icons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Info/Icons/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Info/Retrieval/ConfirmFullRefreshModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Info/Retrieval/ConfirmFullRefreshModal/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Info/Retrieval/RefreshFailedAlert/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Info/Retrieval/RefreshFailedAlert/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Info/Retrieval/RefreshFailedAlert/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Info/Retrieval/RefreshFailedAlert/styles.module.scss -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Info/Retrieval/RetrievalModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Info/Retrieval/RetrievalModal/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Info/Retrieval/RetrievalModal/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Info/Retrieval/RetrievalModal/styles.module.scss -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Info/Retrieval/RetrievalTable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Info/Retrieval/RetrievalTable/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Info/Retrieval/RetrievalTable/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Info/Retrieval/RetrievalTable/styles.module.scss -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Info/Retrieval/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Info/Retrieval/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Info/Retrieval/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Info/Retrieval/utils.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Info/Snapshots/Calendar/Day/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Info/Snapshots/Calendar/Day/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Info/Snapshots/Calendar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Info/Snapshots/Calendar/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Info/Snapshots/Calendar/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Info/Snapshots/Calendar/utils.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Info/Snapshots/TimeLine/Day/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Info/Snapshots/TimeLine/Day/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Info/Snapshots/TimeLine/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Info/Snapshots/TimeLine/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Info/Snapshots/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Info/Snapshots/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Info/Snapshots/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Info/Snapshots/utils.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Info/Status/InstanceResponseModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Info/Status/InstanceResponseModal/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Info/Status/InstanceResponseModal/styles.module.scss: -------------------------------------------------------------------------------- 1 | .formattedText { 2 | max-height: 400px; 3 | } 4 | -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Info/Status/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Info/Status/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Info/Status/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Info/Status/styles.module.scss -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Info/Status/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Info/Status/utils.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Info/components/Property/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Info/components/Property/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Info/components/Property/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Info/components/Property/styles.module.scss -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Info/components/Section/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Info/components/Section/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Info/components/ValueStatus/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Info/components/ValueStatus/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Info/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Info/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Snapshots/components/SnapshotHeader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Snapshots/components/SnapshotHeader/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Snapshots/components/SnapshotsList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Snapshots/components/SnapshotsList/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Snapshots/components/SnapshotsModal/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Snapshots/components/SnapshotsModal/utils.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Snapshots/components/SnapshotsTable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Snapshots/components/SnapshotsTable/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Snapshots/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Snapshots/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Snapshots/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Snapshots/utils/index.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/SnapshotsModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/SnapshotsModal/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Tabs/PlatformTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Tabs/PlatformTabs.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Tabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Tabs/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/Tabs/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/Tabs/styles.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/components/ErrorStub/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/components/ErrorStub/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/components/ModalReloadButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/components/ModalReloadButton/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/components/Tags/Tag/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/components/Tags/Tag/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/components/Tags/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/components/Tags/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/context.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/stores/ClonesModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/stores/ClonesModal.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/stores/Main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/stores/Main.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/stores/SnapshotsModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/stores/SnapshotsModal.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/styles.scss -------------------------------------------------------------------------------- /ui/packages/shared/pages/Instance/useCreatedStores.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Instance/useCreatedStores.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/Logs/Icons/PlusIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Logs/Icons/PlusIcon.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Logs/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Logs/constants/index.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/Logs/hooks/useWsScroll.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Logs/hooks/useWsScroll.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Logs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Logs/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Logs/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Logs/utils/index.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/Logs/wsLogs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Logs/wsLogs.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/Logs/wsSnackbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Logs/wsSnackbar.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/Snapshots/Snapshot/DestorySnapshotModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Snapshots/Snapshot/DestorySnapshotModal/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Snapshots/Snapshot/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Snapshots/Snapshot/context.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/Snapshots/Snapshot/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Snapshots/Snapshot/index.tsx -------------------------------------------------------------------------------- /ui/packages/shared/pages/Snapshots/Snapshot/stores/Main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Snapshots/Snapshot/stores/Main.ts -------------------------------------------------------------------------------- /ui/packages/shared/pages/Snapshots/Snapshot/useCreatedStores.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/pages/Snapshots/Snapshot/useCreatedStores.ts -------------------------------------------------------------------------------- /ui/packages/shared/react-app-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/react-app-env.d.ts -------------------------------------------------------------------------------- /ui/packages/shared/scripts/copy-assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/scripts/copy-assets.js -------------------------------------------------------------------------------- /ui/packages/shared/scripts/pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/scripts/pack.js -------------------------------------------------------------------------------- /ui/packages/shared/stores/Snapshots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/stores/Snapshots.ts -------------------------------------------------------------------------------- /ui/packages/shared/styles/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/styles/colors.ts -------------------------------------------------------------------------------- /ui/packages/shared/styles/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/styles/global.scss -------------------------------------------------------------------------------- /ui/packages/shared/styles/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/styles/icons.tsx -------------------------------------------------------------------------------- /ui/packages/shared/styles/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/styles/mixins.scss -------------------------------------------------------------------------------- /ui/packages/shared/styles/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/styles/styles.ts -------------------------------------------------------------------------------- /ui/packages/shared/styles/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/styles/theme.ts -------------------------------------------------------------------------------- /ui/packages/shared/styles/vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/styles/vars.scss -------------------------------------------------------------------------------- /ui/packages/shared/styles/vars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/styles/vars.ts -------------------------------------------------------------------------------- /ui/packages/shared/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/tsconfig.build.json -------------------------------------------------------------------------------- /ui/packages/shared/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/tsconfig.json -------------------------------------------------------------------------------- /ui/packages/shared/types/api/endpoints/createBranch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/types/api/endpoints/createBranch.ts -------------------------------------------------------------------------------- /ui/packages/shared/types/api/endpoints/createClone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/types/api/endpoints/createClone.ts -------------------------------------------------------------------------------- /ui/packages/shared/types/api/endpoints/createSnapshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/types/api/endpoints/createSnapshot.ts -------------------------------------------------------------------------------- /ui/packages/shared/types/api/endpoints/deleteBranch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/types/api/endpoints/deleteBranch.ts -------------------------------------------------------------------------------- /ui/packages/shared/types/api/endpoints/destroyClone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/types/api/endpoints/destroyClone.ts -------------------------------------------------------------------------------- /ui/packages/shared/types/api/endpoints/destroySnapshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/types/api/endpoints/destroySnapshot.ts -------------------------------------------------------------------------------- /ui/packages/shared/types/api/endpoints/fullRefresh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/types/api/endpoints/fullRefresh.ts -------------------------------------------------------------------------------- /ui/packages/shared/types/api/endpoints/getBranchSnapshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/types/api/endpoints/getBranchSnapshot.ts -------------------------------------------------------------------------------- /ui/packages/shared/types/api/endpoints/getBranches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/types/api/endpoints/getBranches.ts -------------------------------------------------------------------------------- /ui/packages/shared/types/api/endpoints/getClone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/types/api/endpoints/getClone.ts -------------------------------------------------------------------------------- /ui/packages/shared/types/api/endpoints/getConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/types/api/endpoints/getConfig.ts -------------------------------------------------------------------------------- /ui/packages/shared/types/api/endpoints/getEngine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/types/api/endpoints/getEngine.ts -------------------------------------------------------------------------------- /ui/packages/shared/types/api/endpoints/getFullConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/types/api/endpoints/getFullConfig.ts -------------------------------------------------------------------------------- /ui/packages/shared/types/api/endpoints/getInstance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/types/api/endpoints/getInstance.ts -------------------------------------------------------------------------------- /ui/packages/shared/types/api/endpoints/getInstanceRetrieval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/types/api/endpoints/getInstanceRetrieval.ts -------------------------------------------------------------------------------- /ui/packages/shared/types/api/endpoints/getSeImages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/types/api/endpoints/getSeImages.ts -------------------------------------------------------------------------------- /ui/packages/shared/types/api/endpoints/getSnapshotList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/types/api/endpoints/getSnapshotList.ts -------------------------------------------------------------------------------- /ui/packages/shared/types/api/endpoints/getSnapshots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/types/api/endpoints/getSnapshots.ts -------------------------------------------------------------------------------- /ui/packages/shared/types/api/endpoints/getWSToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/types/api/endpoints/getWSToken.ts -------------------------------------------------------------------------------- /ui/packages/shared/types/api/endpoints/initWS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/types/api/endpoints/initWS.ts -------------------------------------------------------------------------------- /ui/packages/shared/types/api/endpoints/refreshInstance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/types/api/endpoints/refreshInstance.ts -------------------------------------------------------------------------------- /ui/packages/shared/types/api/endpoints/resetClone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/types/api/endpoints/resetClone.ts -------------------------------------------------------------------------------- /ui/packages/shared/types/api/endpoints/testDbSource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/types/api/endpoints/testDbSource.ts -------------------------------------------------------------------------------- /ui/packages/shared/types/api/endpoints/updateClone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/types/api/endpoints/updateClone.ts -------------------------------------------------------------------------------- /ui/packages/shared/types/api/endpoints/updateConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/types/api/endpoints/updateConfig.ts -------------------------------------------------------------------------------- /ui/packages/shared/types/api/entities/branchSnapshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/types/api/entities/branchSnapshot.ts -------------------------------------------------------------------------------- /ui/packages/shared/types/api/entities/branchSnapshots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/types/api/entities/branchSnapshots.ts -------------------------------------------------------------------------------- /ui/packages/shared/types/api/entities/clone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/types/api/entities/clone.ts -------------------------------------------------------------------------------- /ui/packages/shared/types/api/entities/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/types/api/entities/config.ts -------------------------------------------------------------------------------- /ui/packages/shared/types/api/entities/createBranch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/types/api/entities/createBranch.ts -------------------------------------------------------------------------------- /ui/packages/shared/types/api/entities/createSnapshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/types/api/entities/createSnapshot.ts -------------------------------------------------------------------------------- /ui/packages/shared/types/api/entities/dbSource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/types/api/entities/dbSource.ts -------------------------------------------------------------------------------- /ui/packages/shared/types/api/entities/instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/types/api/entities/instance.ts -------------------------------------------------------------------------------- /ui/packages/shared/types/api/entities/instanceRetrieval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/types/api/entities/instanceRetrieval.ts -------------------------------------------------------------------------------- /ui/packages/shared/types/api/entities/instanceState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/types/api/entities/instanceState.ts -------------------------------------------------------------------------------- /ui/packages/shared/types/api/entities/pool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/types/api/entities/pool.ts -------------------------------------------------------------------------------- /ui/packages/shared/types/api/entities/snapshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/types/api/entities/snapshot.ts -------------------------------------------------------------------------------- /ui/packages/shared/types/api/entities/wsToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/types/api/entities/wsToken.ts -------------------------------------------------------------------------------- /ui/packages/shared/types/byte-size/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/types/byte-size/index.d.ts -------------------------------------------------------------------------------- /ui/packages/shared/utils/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/utils/api.ts -------------------------------------------------------------------------------- /ui/packages/shared/utils/clone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/utils/clone.ts -------------------------------------------------------------------------------- /ui/packages/shared/utils/connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/utils/connection.ts -------------------------------------------------------------------------------- /ui/packages/shared/utils/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/utils/date.ts -------------------------------------------------------------------------------- /ui/packages/shared/utils/instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/utils/instance.ts -------------------------------------------------------------------------------- /ui/packages/shared/utils/numbers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/utils/numbers.ts -------------------------------------------------------------------------------- /ui/packages/shared/utils/react.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/utils/react.ts -------------------------------------------------------------------------------- /ui/packages/shared/utils/snapshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/utils/snapshot.ts -------------------------------------------------------------------------------- /ui/packages/shared/utils/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/utils/strings.ts -------------------------------------------------------------------------------- /ui/packages/shared/utils/units.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/packages/shared/utils/units.ts -------------------------------------------------------------------------------- /ui/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/pnpm-lock.yaml -------------------------------------------------------------------------------- /ui/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgres-ai/database-lab-engine/HEAD/ui/pnpm-workspace.yaml --------------------------------------------------------------------------------