├── .dev.Dockerfile ├── .devcontainer └── devcontainer.json ├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ ├── deploy.yml │ ├── dockerhub.yml │ ├── preview.yaml │ ├── sync-collection-configs.yml │ ├── verify-api-server.yml │ ├── verify-collection-configs.yml │ └── verify-query-configs.yml ├── .gitignore ├── .gitpod.Dockerfile ├── .gitpod.yml ├── .husky ├── pre-commit └── pre-push ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── configs ├── allowed-origins.yaml ├── collections │ ├── 1.static-site-generator.yml │ ├── 10001.css-framework.yml │ ├── 10002.google-analytics-alternative.yml │ ├── 10003.low-code-development-tool.yml │ ├── 10004.web-framework.yml │ ├── 10005.javascript-framework.yml │ ├── 10006.business-intelligence.yml │ ├── 10007.time-series-database.yml │ ├── 10008.graph-database.yml │ ├── 10009.github-alternative.yml │ ├── 10010.artificial-intelligence.yml │ ├── 10011.artificial-intelligence-of-china.yml │ ├── 10012.headless-cms.yml │ ├── 10013.game-engine.yml │ ├── 10014.javascript-game-engine.yml │ ├── 10015.text-editor.yml │ ├── 10016.search-engine.yml │ ├── 10017.chaos-engineering.yml │ ├── 10018.apm-tool.yml │ ├── 10019.react-framework.yml │ ├── 10020.cicd.yml │ ├── 10021.api-gateway.yml │ ├── 10023.javascript-charting.yml │ ├── 10024.programming-language.yml │ ├── 10025.distributed-file-storage.yml │ ├── 10026.webassembly-runtime.yml │ ├── 10027.testing-tool.yml │ ├── 10028.remote-desktop-tool.yml │ ├── 10029.cross-platform-gui-tool.yml │ ├── 10030.finance.yml │ ├── 10031.web3.yml │ ├── 10032.message-and-streaming.yml │ ├── 10033.identity-server.yml │ ├── 10034.diagram-as-code.yml │ ├── 10035.paas.yml │ ├── 10036.wysiwyg-editor.yml │ ├── 10037.hyperledger.yml │ ├── 10038.hyperledger-besu.yml │ ├── 10039.hyperledger-fabric.yml │ ├── 10040.api-tool-for-developer.yml │ ├── 10041.segment-alternative.yml │ ├── 10042.rust-database.yml │ ├── 10043.go-database.yml │ ├── 10044.modern-data-stack.yml │ ├── 10045.tui-framework.yml │ ├── 10047.terminal.yml │ ├── 10048.ui-framework-and-uikit.yml │ ├── 10049.computer-science-courses.yml │ ├── 10050.open-source-forum-software.yml │ ├── 10051.security-tool.yml │ ├── 10052.golang-orm.yml │ ├── 10053.configuration-management-tools.yml │ ├── 10054.monitoring-tool.yml │ ├── 10055.password-manager.yml │ ├── 10056.data-integration.yml │ ├── 10057.workflow-scheduler.yml │ ├── 10058.mlops-tools.yml │ ├── 10059.key-value-database.yml │ ├── 10060.ios-framework.yml │ ├── 10061.slack-alternative.yml │ ├── 10062.serverless-framework.yml │ ├── 10063.kubernetes-tooling.yml │ ├── 10064.javascript-build-tool.yml │ ├── 10065.javascript-orm.yml │ ├── 10066.virtual-reality.yml │ ├── 10067.robotics.yml │ ├── 10068.x-as-code.yml │ ├── 10069.optimization-solvers.yml │ ├── 10070.approximate-nearest-neighbor-library.yml │ ├── 10071.ansible-devtools.yml │ ├── 10072.business-management.yml │ ├── 10073.cpp-cli-parsing.yml │ ├── 10074.zapier-alternatives.yml │ ├── 10075.chatgpt-alternatives.yml │ ├── 10076.llm-tools.yml │ ├── 10077.vector-search-engine.yml │ ├── 10078.chatgpt-apps.yml │ ├── 10079.stable-diffusion-ecosystem.yml │ ├── 10080.networking-for-games.yml │ ├── 10081.finops.yml │ ├── 10082.web-scanner.yml │ ├── 10083.programming-language-of-china.yml │ ├── 10084.ml-in-rust.yml │ ├── 10085.open-source-data-catalogs.yml │ ├── 10086.reactive-monolith-frameworks.yml │ ├── 10087.llm-devtools.yml │ ├── 10088.webrtc.yml │ ├── 10089.relational-database.yml │ ├── 10090.go-web-frameworks.yml │ ├── 10091.go-logging-libraries.yml │ ├── 10092.browser-extension-frameworks.yml │ ├── 10093.3d-physics-engines.yml │ ├── 10094.vector-database.yml │ ├── 10095.graphrag.yml │ ├── 10096.project-management.yml │ ├── 10097.ai-training-tracking.yml │ ├── 10098.ai-agent-frameworks.yml │ ├── 10099.mcp-client.yml │ ├── 10100.baas.yml │ ├── 10101.anomaly-detection.yml │ ├── 10102.documentation-generator.yml │ └── 2.open-source-database.yml ├── materialized_views │ ├── mv_events_total │ │ └── ddl.sql │ ├── mv_repo_countries_commit_author_role │ │ └── ddl.sql │ ├── mv_repo_countries_issue_commenter_role │ │ └── ddl.sql │ ├── mv_repo_countries_issue_creator_role │ │ └── ddl.sql │ ├── mv_repo_countries_pr_commenter_role │ │ └── ddl.sql │ ├── mv_repo_countries_pr_creator_role │ │ └── ddl.sql │ ├── mv_repo_countries_pr_reviewer_role │ │ └── ddl.sql │ ├── mv_repo_countries_stargazer_role │ │ └── ddl.sql │ ├── mv_repo_daily_engagements │ │ └── ddl.sql │ ├── mv_repo_issue_creators │ │ └── ddl.sql │ ├── mv_repo_issues │ │ └── ddl.sql │ ├── mv_repo_monthly_summary │ │ └── ddl.sql │ ├── mv_repo_organizations_commit_author_role │ │ └── ddl.sql │ ├── mv_repo_organizations_issue_commenter_role │ │ └── ddl.sql │ ├── mv_repo_organizations_issue_creator_role │ │ └── ddl.sql │ ├── mv_repo_organizations_pr_commenter_role │ │ └── ddl.sql │ ├── mv_repo_organizations_pr_creator_role │ │ └── ddl.sql │ ├── mv_repo_organizations_pr_reviewer_role │ │ └── ddl.sql │ ├── mv_repo_organizations_stargazer_role │ │ └── ddl.sql │ ├── mv_repo_participants │ │ └── ddl.sql │ ├── mv_repo_pull_request_creators │ │ └── ddl.sql │ ├── mv_repo_pull_requests │ │ └── ddl.sql │ └── mv_trending_repos │ │ └── ddl.sql ├── params-preset.json ├── pipelines │ ├── calc_collection_repo_monthly_summary │ │ ├── config.json │ │ └── process.sql │ ├── calc_collection_visits │ │ ├── config.json │ │ └── process.sql │ ├── calc_events_total_hourly │ │ ├── config.json │ │ └── process.sql │ ├── calc_events_total_minutely │ │ ├── config.json │ │ └── process.sql │ ├── format_org_names │ │ ├── config.json │ │ └── process.sql │ ├── sync_org_repo_countries_commit_author_role │ │ ├── config.json │ │ └── process.sql │ ├── sync_org_repo_countries_issue_commenter_role │ │ ├── config.json │ │ └── process.sql │ ├── sync_org_repo_countries_issue_creator_role │ │ ├── config.json │ │ └── process.sql │ ├── sync_org_repo_countries_pr_commenter_role │ │ ├── config.json │ │ └── process.sql │ ├── sync_org_repo_countries_pr_creator_role │ │ ├── config.json │ │ └── process.sql │ ├── sync_org_repo_countries_pr_reviewer_role │ │ ├── config.json │ │ └── process.sql │ ├── sync_org_repo_countries_stargazer_role │ │ ├── config.json │ │ └── process.sql │ ├── sync_org_repo_daily_engagements │ │ ├── config.json │ │ └── process.sql │ ├── sync_org_repo_organizations_commit_author_role │ │ ├── config.json │ │ └── process.sql │ ├── sync_org_repo_organizations_issue_commenter_role │ │ ├── config.json │ │ └── process.sql │ ├── sync_org_repo_organizations_issue_creator_role │ │ ├── config.json │ │ └── process.sql │ ├── sync_org_repo_organizations_pr_commenter_role │ │ ├── config.json │ │ └── process.sql │ ├── sync_org_repo_organizations_pr_creator_role │ │ ├── config.json │ │ └── process.sql │ ├── sync_org_repo_organizations_pr_reviewer_role │ │ ├── config.json │ │ └── process.sql │ ├── sync_org_repo_organizations_stargazer_role │ │ ├── config.json │ │ └── process.sql │ ├── sync_org_repo_participants │ │ ├── config.json │ │ └── process.sql │ ├── sync_org_repos │ │ ├── config.json │ │ └── process.sql │ ├── sync_repo_issue_creators │ │ ├── config.json │ │ └── process.sql │ ├── sync_repo_issues │ │ ├── config.json │ │ └── process.sql │ ├── sync_repo_pull_request_creators │ │ ├── config.json │ │ └── process.sql │ └── sync_repo_pull_requests │ │ ├── config.json │ │ └── process.sql ├── prompts │ └── .keep ├── public_api │ ├── README.md │ ├── data_sources │ │ └── cluster.json │ ├── dataapp_config.json │ ├── doc.template.mustache │ ├── http_endpoints │ │ ├── config.json │ │ └── sql │ │ │ ├── GET-collections-hot.sql │ │ │ ├── GET-collections-ranking_by_issues.sql │ │ │ ├── GET-collections-ranking_by_prs.sql │ │ │ ├── GET-collections-ranking_by_stars.sql │ │ │ ├── GET-collections-repos.sql │ │ │ ├── GET-collections.sql │ │ │ ├── GET-hello.sql │ │ │ ├── GET-orgs-active_repos.sql │ │ │ ├── GET-orgs-repos.sql │ │ │ ├── GET-repos-commits-monthly.sql │ │ │ ├── GET-repos-commits-time_distribution.sql │ │ │ ├── GET-repos-issue_creators-countries.sql │ │ │ ├── GET-repos-issue_creators-history.sql │ │ │ ├── GET-repos-issue_creators-organizations.sql │ │ │ ├── GET-repos-issue_creators.sql │ │ │ ├── GET-repos-issues-monthly.sql │ │ │ ├── GET-repos-issues-open_to_closed.sql │ │ │ ├── GET-repos-issues-open_to_first_responded.sql │ │ │ ├── GET-repos-issues-overview.sql │ │ │ ├── GET-repos-overview.sql │ │ │ ├── GET-repos-participants-rank_by_activities.sql │ │ │ ├── GET-repos-pull_request_creators-countries.sql │ │ │ ├── GET-repos-pull_request_creators-history.sql │ │ │ ├── GET-repos-pull_request_creators-organizations.sql │ │ │ ├── GET-repos-pull_request_creators.sql │ │ │ ├── GET-repos-pull_requests-monthly-line_of_changes.sql │ │ │ ├── GET-repos-pull_requests-monthly-sizes.sql │ │ │ ├── GET-repos-pull_requests-open_to_merge.sql │ │ │ ├── GET-repos-pull_requests-overview.sql │ │ │ ├── GET-repos-stargazers-countries.sql │ │ │ ├── GET-repos-stargazers-history.sql │ │ │ ├── GET-repos-stargazers-organizations.sql │ │ │ ├── GET-trends-repos.sql │ │ │ ├── GET-users-commits-monthly.sql │ │ │ ├── GET-users-contributions-hourly-repo.sql │ │ │ ├── GET-users-contributions-monthly-types.sql │ │ │ ├── GET-users-contributions-time_distribution.sql │ │ │ ├── GET-users-followers-ranking.sql │ │ │ ├── GET-users-issues-monthly.sql │ │ │ ├── GET-users-overview.sql │ │ │ ├── GET-users-pull_requests-monthly-actions.sql │ │ │ ├── GET-users-pull_requests-monthly-line_of_changes.sql │ │ │ ├── GET-users-pull_requests-monthly-sizes.sql │ │ │ ├── GET-users-pull_requests-used_languages.sql │ │ │ └── GET-users-stars-monthly.sql │ └── openapi.yaml ├── queries │ ├── analyze-commits-time-distribution │ │ ├── params.json │ │ └── template.sql │ ├── analyze-event-trends │ │ ├── params.json │ │ └── template.sql │ ├── analyze-issue-creators-company │ │ ├── params.json │ │ └── template.sql │ ├── analyze-issue-creators-map │ │ ├── params.json │ │ └── template.sql │ ├── analyze-issue-open-to-closed │ │ ├── params.json │ │ └── template.sql │ ├── analyze-issue-open-to-first-responded │ │ ├── params.json │ │ └── template.sql │ ├── analyze-issue-opened-and-closed │ │ ├── params.json │ │ └── template.sql │ ├── analyze-loc-per-month │ │ ├── params.json │ │ └── template.sql │ ├── analyze-people-activities-contribution-rank │ │ ├── params.json │ │ └── template.sql │ ├── analyze-people-code-contribution-rank │ │ ├── params.json │ │ └── template.sql │ ├── analyze-people-code-pr-contribution-rank │ │ ├── params.json │ │ └── template.sql │ ├── analyze-people-code-review-comments-contribution-rank │ │ ├── params.json │ │ └── template.sql │ ├── analyze-people-code-review-prs-contribution-rank │ │ ├── params.json │ │ └── template.sql │ ├── analyze-people-code-review-submits-contribution-rank │ │ ├── params.json │ │ └── template.sql │ ├── analyze-people-issue-close-contribution-rank │ │ ├── params.json │ │ └── template.sql │ ├── analyze-people-issue-comment-contribution-rank │ │ ├── params.json │ │ └── template.sql │ ├── analyze-people-issue-contribution-rank │ │ ├── params.json │ │ └── template.sql │ ├── analyze-pull-request-creators-company │ │ ├── params.json │ │ └── template.sql │ ├── analyze-pull-request-creators-map │ │ ├── params.json │ │ └── template.sql │ ├── analyze-pull-request-open-to-merged │ │ ├── params.json │ │ └── template.sql │ ├── analyze-pull-requests-size-per-month │ │ ├── params.json │ │ └── template.sql │ ├── analyze-pushes-and-commits-per-month │ │ ├── params.json │ │ └── template.sql │ ├── analyze-recent-collaborative-productivity-metrics │ │ ├── params.json │ │ └── template.sql │ ├── analyze-recent-commits │ │ ├── params.json │ │ └── template.sql │ ├── analyze-recent-contributors │ │ ├── params.json │ │ └── template.sql │ ├── analyze-recent-issues │ │ ├── params.json │ │ └── template.sql │ ├── analyze-recent-pull-requests │ │ ├── params.json │ │ └── template.sql │ ├── analyze-recent-stars │ │ ├── params.json │ │ └── template.sql │ ├── analyze-recent-top-contributors │ │ ├── params.json │ │ └── template.sql │ ├── analyze-repo-issue-overview │ │ ├── params.json │ │ └── template.sql │ ├── analyze-repo-milestones │ │ ├── params.json │ │ └── template.sql │ ├── analyze-repo-overview │ │ ├── params.json │ │ └── template.sql │ ├── analyze-repo-pr-overview │ │ ├── params.json │ │ └── template.sql │ ├── analyze-repo-top-contributors │ │ ├── params.json │ │ └── template.sql │ ├── analyze-stars-company │ │ ├── params.json │ │ └── template.sql │ ├── analyze-stars-history │ │ ├── params.json │ │ └── template.sql │ ├── analyze-stars-map │ │ ├── params.json │ │ └── template.sql │ ├── archive │ │ ├── 2021 │ │ │ ├── company-ranking-by-contributions │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ │ ├── company-ranking-by-contributors │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ │ ├── country-ranking-by-contributions │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ │ ├── country-ranking-by-contributors │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ │ ├── language-ranking-by-prs │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ │ ├── repo-contributor-ranking-by-prs │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ │ ├── repo-pr-creator-ranking-by-prs │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ │ ├── repo-racing-by-stars │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ │ ├── repo-ranking-by-issue-creators │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ │ ├── repo-ranking-by-issue-open-to-close │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ │ ├── repo-ranking-by-issue-open-to-first-respond │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ │ ├── repo-ranking-by-issues │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ │ ├── repo-ranking-by-pr-open-to-merge │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ │ ├── repo-ranking-by-prs │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ │ ├── repo-ranking-by-stars-growth │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ │ ├── repo-ranking-by-yoy-stars-growth-least │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ │ ├── repo-ranking-by-yoy-stars-growth │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ │ └── repo-ranking-by-z-score │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ └── bot │ │ │ ├── contribution-ranking │ │ │ ├── params.json │ │ │ └── template.sql │ │ │ ├── cumulative-numbers │ │ │ ├── params.json │ │ │ └── template.sql │ │ │ ├── dependabot-commits-time-distribution │ │ │ ├── params.json │ │ │ └── template.sql │ │ │ └── weird-bots-ranking │ │ │ ├── params.json │ │ │ └── template.sql │ ├── collection-issues-history-rank │ │ ├── params.json │ │ └── template.sql │ ├── collection-issues-history │ │ ├── params.json │ │ └── template.sql │ ├── collection-issues-last-28-days-rank │ │ ├── params.json │ │ └── template.sql │ ├── collection-issues-month-rank │ │ ├── params.json │ │ └── template.sql │ ├── collection-pull-request-creators-history-rank │ │ ├── params.json │ │ └── template.sql │ ├── collection-pull-request-creators-history │ │ ├── params.json │ │ └── template.sql │ ├── collection-pull-requests-history-rank │ │ ├── params.json │ │ └── template.sql │ ├── collection-pull-requests-history │ │ ├── params.json │ │ └── template.sql │ ├── collection-pull-requests-last-28-days-rank │ │ ├── params.json │ │ └── template.sql │ ├── collection-pull-requests-month-rank │ │ ├── params.json │ │ └── template.sql │ ├── collection-stars-history-rank │ │ ├── params.json │ │ └── template.sql │ ├── collection-stars-history │ │ ├── params.json │ │ └── template.sql │ ├── collection-stars-last-28-days-rank │ │ ├── params.json │ │ └── template.sql │ ├── collection-stars-month-rank │ │ ├── params.json │ │ └── template.sql │ ├── events-increment-intervals │ │ ├── params.json │ │ └── template.sql │ ├── events-increment-list │ │ ├── params.json │ │ └── template.sql │ ├── events-increment │ │ ├── params.json │ │ └── template.sql │ ├── events-total │ │ ├── params.json │ │ └── template.sql │ ├── get-repo-by-id │ │ ├── params.json │ │ └── template.sql │ ├── get-repo-collections │ │ ├── params.json │ │ └── template.sql │ ├── get-user-by-login │ │ ├── params.json │ │ └── template.sql │ ├── live-time-base-information-hourly │ │ ├── params.json │ │ └── template.sql │ ├── live-time-top-developers-by-prs-daily │ │ ├── params.json │ │ └── template.sql │ ├── live-time-top-repos-by-prs-daily │ │ ├── params.json │ │ └── template.sql │ ├── organizations │ │ ├── check-if-is-merged-pr-creator │ │ │ ├── params.json │ │ │ └── template.sql │ │ └── list-merged-pr-creators │ │ │ ├── params.json │ │ │ └── template.sql │ ├── orgs │ │ ├── commits │ │ │ ├── code-changes │ │ │ │ └── top-repos │ │ │ │ │ ├── params.json │ │ │ │ │ └── template.sql │ │ │ ├── time-distribution │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ │ ├── total │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ │ └── trends │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ ├── issues │ │ │ ├── actions │ │ │ │ └── trends │ │ │ │ │ ├── params.json │ │ │ │ │ └── template.sql │ │ │ ├── closed-ratio │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ │ ├── issue-comments │ │ │ │ └── top-repos │ │ │ │ │ ├── params.json │ │ │ │ │ └── template.sql │ │ │ ├── open-to-close-duration │ │ │ │ ├── medium │ │ │ │ │ ├── params.json │ │ │ │ │ └── template.sql │ │ │ │ └── top-repos │ │ │ │ │ ├── params.json │ │ │ │ │ └── template.sql │ │ │ ├── open-to-first-response-duration │ │ │ │ ├── medium │ │ │ │ │ ├── params.json │ │ │ │ │ └── template.sql │ │ │ │ └── top-repos │ │ │ │ │ ├── params.json │ │ │ │ │ └── template.sql │ │ │ ├── total │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ │ └── trends │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ ├── overview │ │ │ ├── params.json │ │ │ └── template.sql │ │ ├── participants │ │ │ ├── active │ │ │ │ ├── ranking │ │ │ │ │ ├── params.json │ │ │ │ │ └── template.sql │ │ │ │ ├── total │ │ │ │ │ ├── params.json │ │ │ │ │ └── template.sql │ │ │ │ └── trends │ │ │ │ │ ├── params.json │ │ │ │ │ └── template.sql │ │ │ ├── engagements │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ │ ├── locations │ │ │ │ ├── completion-rate │ │ │ │ │ ├── params.json │ │ │ │ │ └── template.sql │ │ │ │ ├── filled-ratio │ │ │ │ │ ├── params.json │ │ │ │ │ └── template.sql │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ │ ├── new │ │ │ │ ├── ranking │ │ │ │ │ ├── params.json │ │ │ │ │ └── template.sql │ │ │ │ ├── total │ │ │ │ │ ├── params.json │ │ │ │ │ └── template.sql │ │ │ │ └── trends │ │ │ │ │ ├── params.json │ │ │ │ │ └── template.sql │ │ │ ├── organizations │ │ │ │ ├── completion-rate │ │ │ │ │ ├── params.json │ │ │ │ │ └── template.sql │ │ │ │ ├── filled-ratio │ │ │ │ │ ├── params.json │ │ │ │ │ └── template.sql │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ │ ├── roles │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ │ └── trends │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ ├── pull-requests │ │ │ ├── actions │ │ │ │ └── trends │ │ │ │ │ ├── params.json │ │ │ │ │ └── template.sql │ │ │ ├── merged-ratio │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ │ ├── open-to-close-duration │ │ │ │ ├── medium │ │ │ │ │ ├── params.json │ │ │ │ │ └── template.sql │ │ │ │ └── top-repos │ │ │ │ │ ├── params.json │ │ │ │ │ └── template.sql │ │ │ ├── open-to-first-response-duration │ │ │ │ ├── medium │ │ │ │ │ ├── params.json │ │ │ │ │ └── template.sql │ │ │ │ └── top-repos │ │ │ │ │ ├── params.json │ │ │ │ │ └── template.sql │ │ │ ├── self-merged-ratio │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ │ ├── total │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ │ └── trends │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ ├── repos │ │ │ ├── active │ │ │ │ ├── ranking │ │ │ │ │ ├── params.json │ │ │ │ │ └── template.sql │ │ │ │ └── total │ │ │ │ │ ├── params.json │ │ │ │ │ └── template.sql │ │ │ ├── params.json │ │ │ └── template.sql │ │ ├── reviews │ │ │ ├── open-to-first-review-duration │ │ │ │ ├── medium │ │ │ │ │ ├── params.json │ │ │ │ │ └── template.sql │ │ │ │ └── top-repos │ │ │ │ │ ├── params.json │ │ │ │ │ └── template.sql │ │ │ ├── review-comments │ │ │ │ └── top-repos │ │ │ │ │ ├── params.json │ │ │ │ │ └── template.sql │ │ │ ├── review-prs │ │ │ │ └── trends │ │ │ │ │ ├── params.json │ │ │ │ │ └── template.sql │ │ │ ├── reviewed-ratio │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ │ ├── total │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ │ └── trends │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ └── stars │ │ │ ├── locations │ │ │ ├── completion-rate │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ │ ├── filled-ratio │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ │ ├── params.json │ │ │ └── template.sql │ │ │ ├── organizations │ │ │ ├── completion-rate │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ │ ├── filled-ratio │ │ │ │ ├── params.json │ │ │ │ └── template.sql │ │ │ ├── params.json │ │ │ └── template.sql │ │ │ ├── top-repos │ │ │ ├── params.json │ │ │ └── template.sql │ │ │ ├── total │ │ │ ├── params.json │ │ │ └── template.sql │ │ │ └── trends │ │ │ ├── params.json │ │ │ └── template.sql │ ├── personal-contribution-in-diff-repos │ │ ├── params.json │ │ └── template.sql │ ├── personal-contribution-time-distribution │ │ ├── params.json │ │ └── template.sql │ ├── personal-contribution-trends │ │ ├── params.json │ │ └── template.sql │ ├── personal-contributions-for-repos │ │ ├── params.json │ │ └── template.sql │ ├── personal-issues-history │ │ ├── params.json │ │ └── template.sql │ ├── personal-languages │ │ ├── params.json │ │ └── template.sql │ ├── personal-overview │ │ ├── params.json │ │ └── template.sql │ ├── personal-pull-request-action-history │ │ ├── params.json │ │ └── template.sql │ ├── personal-pull-request-code-changes-history │ │ ├── params.json │ │ └── template.sql │ ├── personal-pull-request-reviews-history │ │ ├── params.json │ │ └── template.sql │ ├── personal-pull-request-size-history │ │ ├── params.json │ │ └── template.sql │ ├── personal-pushes-and-commits │ │ ├── params.json │ │ └── template.sql │ ├── personal-star-history │ │ ├── params.json │ │ └── template.sql │ ├── recent-hot-collections │ │ ├── params.json │ │ └── template.sql │ ├── repos │ │ ├── params.json │ │ └── template.sql │ ├── stats-index-info │ │ ├── params.json │ │ └── template.sql │ ├── stats-index-usage │ │ ├── params.json │ │ └── template.sql │ ├── stats-indexes-info │ │ ├── params.json │ │ └── template.sql │ ├── stats-indexes-usage │ │ ├── params.json │ │ └── template.sql │ ├── stats-query-records-latest │ │ ├── params.json │ │ └── template.sql │ ├── stats-query-records │ │ ├── params.json │ │ └── template.sql │ ├── stats-table-ddl │ │ ├── params.json │ │ └── template.sql │ ├── stats-table-info │ │ ├── params.json │ │ └── template.sql │ └── trending-repos │ │ ├── params.json │ │ └── template.sql └── search │ └── recommend │ ├── orgs │ └── list.json │ ├── repos │ ├── list-1.json │ └── list-2.json │ └── users │ └── list.json ├── docker-compose.yml ├── etl ├── .browserslistrc ├── .dockerignore ├── .gitattributes ├── .gitignore ├── .ruby-version ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── app │ ├── assets │ │ ├── config │ │ │ └── manifest.js │ │ ├── images │ │ │ └── .keep │ │ └── stylesheets │ │ │ └── application.css │ ├── channels │ │ └── application_cable │ │ │ ├── channel.rb │ │ │ └── connection.rb │ ├── controllers │ │ ├── application_controller.rb │ │ └── concerns │ │ │ └── .keep │ ├── helpers │ │ └── application_helper.rb │ ├── javascript │ │ ├── channels │ │ │ ├── consumer.js │ │ │ └── index.js │ │ └── packs │ │ │ └── application.js │ ├── jobs │ │ └── application_job.rb │ ├── mailers │ │ └── application_mailer.rb │ ├── models │ │ ├── application_record.rb │ │ ├── cn_org.rb │ │ ├── cn_repo.rb │ │ ├── collection.rb │ │ ├── collection_item.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── css_framework_repo.rb │ │ ├── db_repo.rb │ │ ├── event_log.rb │ │ ├── github_event.rb │ │ ├── hn_item.rb │ │ ├── hn_user.rb │ │ ├── import_log.rb │ │ ├── js_framework_repo.rb │ │ ├── mention_log.rb │ │ ├── nocode_repo.rb │ │ ├── programming_language_repo.rb │ │ ├── so_answer.rb │ │ ├── so_comment.rb │ │ ├── so_question.rb │ │ ├── so_tag.rb │ │ ├── so_user.rb │ │ ├── static_site_generator_repo.rb │ │ ├── trending_repo.rb │ │ └── web_framework_repo.rb │ └── views │ │ └── layouts │ │ ├── application.html.erb │ │ ├── mailer.html.erb │ │ └── mailer.text.erb ├── babel.config.js ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ ├── spring │ ├── webpack │ ├── webpack-dev-server │ └── yarn ├── config.ru ├── config │ ├── application.rb │ ├── boot.rb │ ├── cable.yml │ ├── credentials.yml.enc │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── application_controller_renderer.rb │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── content_security_policy.rb │ │ ├── cookies_serializer.rb │ │ ├── fetch_event.rb │ │ ├── filter_parameter_logging.rb │ │ ├── hn_fetch_item.rb │ │ ├── hn_fetch_user.rb │ │ ├── hn_realtime.rb │ │ ├── hn_update.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── permissions_policy.rb │ │ ├── realtime.rb │ │ ├── schema_dumping_helper.rb │ │ ├── so_fetch_answer.rb │ │ ├── so_fetch_comment.rb │ │ ├── so_fetch_question.rb │ │ ├── so_fetch_tag.rb │ │ ├── so_fetch_user.rb │ │ ├── so_realtime_answer.rb │ │ ├── so_realtime_comment.rb │ │ ├── so_realtime_question.rb │ │ ├── so_realtime_user.rb │ │ ├── sql_chart.rb │ │ ├── tidb_dumpling.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ └── en.yml │ ├── puma.rb │ ├── routes.rb │ ├── spring.rb │ ├── storage.yml │ ├── webpack │ │ ├── development.js │ │ ├── environment.js │ │ ├── production.js │ │ └── test.js │ └── webpacker.yml ├── db │ ├── migrate │ │ ├── 20211118190004_create_import_logs.rb │ │ ├── 20211205174309_create_db_repos.rb │ │ ├── 20211205190931_create_cn_orgs.rb │ │ ├── 20211206155721_create_cn_repos.rb │ │ ├── 20211208112931_partition.rb │ │ ├── 20211214161151_add_users.rb │ │ ├── 20220110101625_create_nocode_repos.rb │ │ ├── 20220111101529_create_web_framework_repos.rb │ │ ├── 20220111105518_create_programming_language_repos.rb │ │ ├── 20220111105944_create_static_site_generator_repos.rb │ │ ├── 20220111112315_create_js_framework_repos.rb │ │ ├── 20220112163444_create_css_framework_repos.rb │ │ ├── 20220512044547_create_collections.rb │ │ ├── 20220512044558_create_collection_items.rb │ │ ├── 20220526073719_add_public_for_collection.rb │ │ ├── 20220526174823_create_event_logs.rb │ │ ├── 20220613101057_add_cache_table.rb │ │ ├── 20220627072814_add_osdb_repo.rb │ │ ├── 20220627081844_add_missing_tables.rb │ │ ├── 20220801053944_add_trending_repo.rb │ │ ├── 20220818090000_set_tidb_partition_prune_mode_to_dynamic.rb │ │ ├── 20221120144415_create_mention_logs.rb │ │ ├── 20221218164010_init_hackernews_db.rb │ │ ├── 20221219004928_add_parts_and_kids_for_hackernews.rb │ │ ├── 20221219005905_add_poll_column_for_hackernews.rb │ │ ├── 20221220182157_create_hn_users.rb │ │ ├── 20230107203606_add_so_tables.rb │ │ ├── 20230117183228_add_last_modified_date_in_so_users.rb │ │ ├── 20230117190603_add_index_on_last_activity_date.rb │ │ └── 20230120124214_add_index_on_last_modified_date.rb │ ├── schema.rb │ ├── seed.sql │ └── seeds.rb ├── dumpling.txt ├── import_from_bigquery.sql ├── lib │ ├── assets │ │ └── .keep │ ├── collection_tweet_generator.rb │ ├── fill_watch_event.rb │ ├── importer.rb │ ├── tasks │ │ ├── .keep │ │ ├── auto_annotate_models.rake │ │ └── import.rake │ ├── trending_repo_generator.rb │ ├── tweet_collection.rb │ └── tweet_repo.rb ├── log │ └── .keep ├── meta │ ├── collections │ │ └── DEPRECATED.md │ ├── orgs │ │ └── cn_orgs.yml │ └── repos │ │ ├── cn_repos.yml │ │ ├── css_framework_repos.yml │ │ ├── db_repos.yml │ │ ├── js_framework_repos.yml │ │ ├── nocode_repos.yml │ │ ├── programming_language_repos.yml │ │ ├── static_site_generator_repos.yml │ │ └── web_framework_repos.yml ├── package.json ├── postcss.config.js ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── apple-touch-icon-precomposed.png │ ├── apple-touch-icon.png │ ├── favicon.ico │ └── robots.txt ├── sql │ ├── database │ │ └── 2021 │ │ │ ├── prs.sql │ │ │ ├── star_racing.sql │ │ │ ├── stars.sql │ │ │ ├── top_lang.sql │ │ │ └── top_users.sql │ ├── jsframework │ │ └── 2021 │ │ │ ├── prs.sql │ │ │ ├── repos.sql │ │ │ ├── score.sql │ │ │ ├── star_racing.sql │ │ │ ├── stars.sql │ │ │ ├── top_lang.sql │ │ │ └── top_users.sql │ ├── lang │ │ └── 2021 │ │ │ ├── prs.sql │ │ │ ├── repos.sql │ │ │ ├── score.sql │ │ │ ├── star_racing.sql │ │ │ ├── star_racing_v2.sql │ │ │ ├── stars.sql │ │ │ ├── top_lang.sql │ │ │ └── top_users.sql │ ├── lowcode │ │ └── 2021 │ │ │ ├── prs.sql │ │ │ ├── repos.sql │ │ │ ├── score.sql │ │ │ ├── star_racing.sql │ │ │ ├── stars.sql │ │ │ ├── top_lang.sql │ │ │ └── top_users.sql │ └── webframework │ │ └── 2021 │ │ ├── prs.sql │ │ ├── star_racing.sql │ │ ├── stars.sql │ │ ├── top_lang.sql │ │ └── top_users.sql ├── start.sh ├── storage │ └── .keep ├── test │ ├── application_system_test_case.rb │ ├── channels │ │ └── application_cable │ │ │ └── connection_test.rb │ ├── controllers │ │ └── .keep │ ├── fixtures │ │ ├── cn_orgs.yml │ │ ├── cn_repos.yml │ │ ├── collection_items.yml │ │ ├── collections.yml │ │ ├── css_framework_repos.yml │ │ ├── db_repos.yml │ │ ├── event_logs.yml │ │ ├── files │ │ │ └── .keep │ │ ├── github_events.yml │ │ ├── import_logs.yml │ │ ├── js_framework_repos.yml │ │ ├── mention_logs.yml │ │ ├── nocode_repos.yml │ │ ├── programming_language_repos.yml │ │ ├── static_site_generator_repos.yml │ │ └── web_framework_repos.yml │ ├── helpers │ │ └── .keep │ ├── integration │ │ └── .keep │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── cn_org_test.rb │ │ ├── cn_repo_test.rb │ │ ├── collection_item_test.rb │ │ ├── collection_test.rb │ │ ├── css_framework_repo_test.rb │ │ ├── db_repo_test.rb │ │ ├── event_log_test.rb │ │ ├── github_event_test.rb │ │ ├── import_log_test.rb │ │ ├── js_framework_repo_test.rb │ │ ├── mention_log_test.rb │ │ ├── nocode_repo_test.rb │ │ ├── programming_language_repo_test.rb │ │ ├── static_site_generator_repo_test.rb │ │ └── web_framework_repo_test.rb │ ├── system │ │ └── .keep │ └── test_helper.rb ├── tidb-lightning.toml.example ├── tmp │ ├── .keep │ └── pids │ │ └── .keep ├── vendor │ └── .keep └── yarn.lock ├── package.json ├── packages ├── api-server │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── __tests__ │ │ ├── app.ts │ │ ├── core │ │ │ ├── cache │ │ │ │ ├── cache-builder.ts │ │ │ │ └── cache.ts │ │ │ ├── db │ │ │ │ └── batch-loader.ts │ │ │ └── executor │ │ │ │ ├── octokit-executor │ │ │ │ ├── OctokitExecutor.ts │ │ │ │ └── OctokitFactory.ts │ │ │ │ └── query-executor │ │ │ │ ├── TiDBPlaygroundQueryExecutor.ts │ │ │ │ └── TiDBQueryExecutor.ts │ │ ├── helpers │ │ │ ├── app.ts │ │ │ ├── container │ │ │ │ ├── RedisContainer.ts │ │ │ │ └── TiDBContainer.ts │ │ │ ├── db.ts │ │ │ ├── hooks │ │ │ │ ├── setup.ts │ │ │ │ └── teardown.ts │ │ │ ├── log.ts │ │ │ ├── promises.ts │ │ │ ├── queries.ts │ │ │ ├── redis.ts │ │ │ └── timeout.ts │ │ ├── migrations │ │ │ ├── a.gharchive_dev-schema-create.sql │ │ │ ├── b.gharchive_dev.sys_users-schema.sql │ │ │ ├── gharchive_dev.access_logs-schema.sql │ │ │ ├── gharchive_dev.ar_internal_metadata-schema.sql │ │ │ ├── gharchive_dev.blacklist_repos-schema.sql │ │ │ ├── gharchive_dev.blacklist_users-schema.sql │ │ │ ├── gharchive_dev.cache-schema.sql │ │ │ ├── gharchive_dev.cached_table_cache-schema.sql │ │ │ ├── gharchive_dev.cn_orgs-schema.sql │ │ │ ├── gharchive_dev.cn_repos-schema.sql │ │ │ ├── gharchive_dev.collection_items-schema.sql │ │ │ ├── gharchive_dev.collections-schema.sql │ │ │ ├── gharchive_dev.css_framework_repos-schema.sql │ │ │ ├── gharchive_dev.db_repos-schema.sql │ │ │ ├── gharchive_dev.event_logs-schema.sql │ │ │ ├── gharchive_dev.explorer_questions-schema.sql │ │ │ ├── gharchive_dev.explorer_recommend_questions-schema.sql │ │ │ ├── gharchive_dev.github_events-schema.sql │ │ │ ├── gharchive_dev.github_repo_languages-schema.sql │ │ │ ├── gharchive_dev.github_repo_topics-schema.sql │ │ │ ├── gharchive_dev.github_repos-schema.sql │ │ │ ├── gharchive_dev.github_users-schema.sql │ │ │ ├── gharchive_dev.import_logs-schema.sql │ │ │ ├── gharchive_dev.js_framework_repos-schema.sql │ │ │ ├── gharchive_dev.location_cache-schema.sql │ │ │ ├── gharchive_dev.mv_repo_countries_commit_author_role-schema.sql │ │ │ ├── gharchive_dev.mv_repo_countries_issue_commenter_role-schema.sql │ │ │ ├── gharchive_dev.mv_repo_countries_issue_creator_role-schema.sql │ │ │ ├── gharchive_dev.mv_repo_countries_pr_commenter_role-schema.sql │ │ │ ├── gharchive_dev.mv_repo_countries_pr_creator_role-schema.sql │ │ │ ├── gharchive_dev.mv_repo_countries_pr_reviewer_role-schema.sql │ │ │ ├── gharchive_dev.mv_repo_countries_stargazer_role-schema.sql │ │ │ ├── gharchive_dev.mv_repo_daily_engaments-schema.sql │ │ │ ├── gharchive_dev.mv_repo_issues-schema.sql │ │ │ ├── gharchive_dev.mv_repo_organizations_commit_author_role-schema.sql │ │ │ ├── gharchive_dev.mv_repo_organizations_issue_commenter_role-schema.sql │ │ │ ├── gharchive_dev.mv_repo_organizations_issue_creator_role-schema.sql │ │ │ ├── gharchive_dev.mv_repo_organizations_pr_commenter_role-schema.sql │ │ │ ├── gharchive_dev.mv_repo_organizations_pr_creator_role-schema.sql │ │ │ ├── gharchive_dev.mv_repo_organizations_pr_reviewer_role-schema.sql │ │ │ ├── gharchive_dev.mv_repo_organizations_stargazer_role-schema.sql │ │ │ ├── gharchive_dev.mv_repo_participants-schema.sql │ │ │ ├── gharchive_dev.mv_repo_pull_requests-schema.sql │ │ │ ├── gharchive_dev.nocode_repos-schema.sql │ │ │ ├── gharchive_dev.osdb_repos-schema.sql │ │ │ ├── gharchive_dev.programming_language_repos-schema.sql │ │ │ ├── gharchive_dev.repo_milestone_types-schema.sql │ │ │ ├── gharchive_dev.repo_milestones-schema.sql │ │ │ ├── gharchive_dev.schema_migrations-schema.sql │ │ │ ├── gharchive_dev.static_site_generator_repos-schema.sql │ │ │ ├── gharchive_dev.stats_api_requests-schema.sql │ │ │ ├── gharchive_dev.stats_index_summary-schema.sql │ │ │ ├── gharchive_dev.stats_query_summary-schema.sql │ │ │ ├── gharchive_dev.sys_accounts-schema.sql │ │ │ ├── gharchive_dev.sys_repo_milestone_types-schema.sql │ │ │ ├── gharchive_dev.sys_repo_milestones-schema.sql │ │ │ ├── gharchive_dev.sys_sent_repo_milestones-schema.sql │ │ │ ├── gharchive_dev.sys_subscribed_repos-schema.sql │ │ │ ├── gharchive_dev.trending_repos-schema.sql │ │ │ ├── gharchive_dev.web_framework_repos-schema.sql │ │ │ └── z.users.sql │ │ ├── plugins │ │ │ ├── services │ │ │ │ ├── collection-service.ts │ │ │ │ ├── repo-service.ts │ │ │ │ ├── stats-service.ts │ │ │ │ └── user-service.ts │ │ │ └── stats.ts │ │ ├── queries.ts │ │ └── tsconfig.json │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── app.ts │ │ ├── cmd │ │ │ └── gen-docs.ts │ │ ├── core │ │ │ ├── cache │ │ │ │ ├── Cache.ts │ │ │ │ ├── CacheBuilder.ts │ │ │ │ └── provider │ │ │ │ │ ├── CacheProvider.ts │ │ │ │ │ ├── CachedTableCacheProvider.ts │ │ │ │ │ └── NormalTableCacheProvider.ts │ │ │ ├── db │ │ │ │ ├── batch-loader.ts │ │ │ │ └── pool-decorator.ts │ │ │ ├── executor │ │ │ │ ├── octokit-executor │ │ │ │ │ ├── OctokitExecutor.ts │ │ │ │ │ └── OctokitFactory.ts │ │ │ │ └── query-executor │ │ │ │ │ ├── QueryExecutor.d.ts │ │ │ │ │ ├── TiDBPlaygroundQueryExecutor.ts │ │ │ │ │ └── TiDBQueryExecutor.ts │ │ │ ├── playground │ │ │ │ ├── limitation.ts │ │ │ │ └── playground.ts │ │ │ └── runner │ │ │ │ ├── query │ │ │ │ ├── QueryLegacyParser.ts │ │ │ │ ├── QueryLiquidParser.ts │ │ │ │ ├── QueryLoader.ts │ │ │ │ ├── QueryParser.ts │ │ │ │ └── QueryRunner.ts │ │ │ │ └── sql │ │ │ │ └── SQLRunner.ts │ │ ├── env.ts │ │ ├── index.ts │ │ ├── logger.ts │ │ ├── metrics.ts │ │ ├── plugins │ │ │ ├── auth │ │ │ │ └── auth0.ts │ │ │ ├── cache │ │ │ │ └── cache-builder.ts │ │ │ ├── cors.ts │ │ │ ├── etag.ts │ │ │ ├── executors │ │ │ │ ├── octokit-executor.ts │ │ │ │ ├── tidb-playground-query-executor.ts │ │ │ │ └── tidb-query-executor.ts │ │ │ ├── metrics.ts │ │ │ ├── queue │ │ │ │ ├── explorer-high-concurrent-queue.ts │ │ │ │ └── explorer-low-concurrent-queue.ts │ │ │ ├── rate-limit.ts │ │ │ ├── redis.ts │ │ │ ├── runner │ │ │ │ ├── query │ │ │ │ │ └── index.ts │ │ │ │ └── sql │ │ │ │ │ └── index.ts │ │ │ ├── sensible.ts │ │ │ ├── services │ │ │ │ ├── bot-service │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── prompt │ │ │ │ │ │ ├── context │ │ │ │ │ │ │ ├── context-provider.ts │ │ │ │ │ │ │ └── embedding-context-provider.ts │ │ │ │ │ │ └── prompt-manager.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── collection-service │ │ │ │ │ └── index.ts │ │ │ │ ├── explorer-service │ │ │ │ │ ├── index.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── github-service │ │ │ │ │ └── index.ts │ │ │ │ ├── playground-service │ │ │ │ │ └── index.ts │ │ │ │ ├── repo-service │ │ │ │ │ └── index.ts │ │ │ │ ├── stats-service │ │ │ │ │ └── index.ts │ │ │ │ ├── tidb-data-service │ │ │ │ │ └── index.ts │ │ │ │ └── user-service │ │ │ │ │ └── index.ts │ │ │ ├── socket.io │ │ │ │ └── index.ts │ │ │ ├── stats │ │ │ │ └── api-request-recorder.ts │ │ │ ├── swagger.ts │ │ │ ├── tidb.ts │ │ │ └── url-data.ts │ │ ├── routes │ │ │ ├── README.md │ │ │ ├── bot │ │ │ │ └── questionToSQL │ │ │ │ │ ├── index.ts │ │ │ │ │ └── quota │ │ │ │ │ └── index.ts │ │ │ ├── collections │ │ │ │ ├── _id │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ ├── explorer │ │ │ │ ├── answer │ │ │ │ │ └── index.ts │ │ │ │ ├── questions │ │ │ │ │ ├── _questionId │ │ │ │ │ │ ├── feedback │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── recommend │ │ │ │ │ │ │ ├── cancel │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── tags │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── recommend │ │ │ │ │ │ ├── batchRefresh │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── index.ts │ │ │ │ └── tags │ │ │ │ │ └── index.ts │ │ │ ├── gh │ │ │ │ ├── organizations │ │ │ │ │ ├── _id │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── search │ │ │ │ │ │ └── index.ts │ │ │ │ ├── repo │ │ │ │ │ └── _owner │ │ │ │ │ │ └── _repo │ │ │ │ │ │ └── index.ts │ │ │ │ ├── repos │ │ │ │ │ ├── _owner │ │ │ │ │ │ └── _repo │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── search │ │ │ │ │ │ └── index.ts │ │ │ │ ├── repositories │ │ │ │ │ └── _id │ │ │ │ │ │ └── index.ts │ │ │ │ ├── user │ │ │ │ │ └── _id │ │ │ │ │ │ └── index.ts │ │ │ │ └── users │ │ │ │ │ ├── _username │ │ │ │ │ └── index.ts │ │ │ │ │ └── search │ │ │ │ │ └── index.ts │ │ │ ├── healthy │ │ │ │ └── index.ts │ │ │ ├── playground │ │ │ │ └── sql │ │ │ │ │ └── generate │ │ │ │ │ ├── index.ts │ │ │ │ │ └── quota │ │ │ │ │ └── index.ts │ │ │ ├── q │ │ │ │ ├── explain │ │ │ │ │ └── _queryName │ │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ └── playground │ │ │ │ │ └── index.ts │ │ │ ├── qo │ │ │ │ └── repos │ │ │ │ │ └── groups │ │ │ │ │ └── osdb │ │ │ │ │ └── index.ts │ │ │ ├── repos │ │ │ │ └── _owner │ │ │ │ │ └── _repo │ │ │ │ │ ├── subscribe │ │ │ │ │ └── index.ts │ │ │ │ │ └── unsubscribe │ │ │ │ │ └── index.ts │ │ │ ├── root.ts │ │ │ ├── user │ │ │ │ ├── email-updates │ │ │ │ │ ├── get-email-update-setting.ts │ │ │ │ │ └── update-email-update-setting.ts │ │ │ │ ├── index.ts │ │ │ │ └── subscriptions │ │ │ │ │ └── index.ts │ │ │ └── v1 │ │ │ │ ├── collections │ │ │ │ ├── _collection_id │ │ │ │ │ ├── ranking_by_issues │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── ranking_by_prs │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── ranking_by_stars │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── repos │ │ │ │ │ │ └── index.ts │ │ │ │ ├── hot │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ ├── repos │ │ │ │ └── _owner │ │ │ │ │ └── _repo │ │ │ │ │ ├── issue_creators │ │ │ │ │ ├── countries │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── history │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── organizations │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── pull_request_creators │ │ │ │ │ ├── countries │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── history │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── organizations │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── stargazers │ │ │ │ │ ├── countries │ │ │ │ │ └── index.ts │ │ │ │ │ ├── history │ │ │ │ │ └── index.ts │ │ │ │ │ └── organizations │ │ │ │ │ └── index.ts │ │ │ │ └── trends │ │ │ │ └── repos │ │ │ │ └── index.ts │ │ └── utils │ │ │ ├── compact.ts │ │ │ ├── db.ts │ │ │ ├── endpoint.ts │ │ │ ├── error.ts │ │ │ ├── http │ │ │ └── forwared.ts │ │ │ ├── octokit.ts │ │ │ ├── sleep.ts │ │ │ └── sqlite.ts │ └── tsconfig.json ├── cli │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── cmd │ │ │ └── collection │ │ │ │ ├── common.ts │ │ │ │ ├── reload.ts │ │ │ │ └── verify.ts │ │ ├── configs │ │ │ └── index.ts │ │ ├── db │ │ │ ├── cache.ts │ │ │ ├── collections.ts │ │ │ ├── github_repos.ts │ │ │ ├── index.ts │ │ │ └── schema.d.ts │ │ ├── env.ts │ │ ├── index.ts │ │ └── logger.ts │ └── tsconfig.json ├── job-server │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── app.ts │ │ ├── env.ts │ │ ├── jobs │ │ │ ├── explorer_high_concurrent_queue │ │ │ │ └── index.worker.ts │ │ │ └── explorer_low_concurrent_queue │ │ │ │ └── index.worker.ts │ │ ├── lib │ │ │ └── bullmq.ts │ │ ├── logger.ts │ │ ├── metrics.ts │ │ ├── plugins │ │ │ ├── prompt-template-manager.ts │ │ │ ├── queue.ts │ │ │ ├── redis.ts │ │ │ ├── services │ │ │ │ ├── bot-service.ts │ │ │ │ └── explorer-service.ts │ │ │ └── tidb.ts │ │ ├── routes │ │ │ ├── healthy │ │ │ │ └── index.ts │ │ │ └── metrics │ │ │ │ └── index.ts │ │ ├── types │ │ │ └── index.ts │ │ └── utils │ │ │ └── db.ts │ └── tsconfig.json ├── pipeline │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── app.ts │ │ ├── env.ts │ │ ├── errors.ts │ │ ├── index.ts │ │ ├── logger.ts │ │ ├── plugins │ │ │ ├── materialized_views │ │ │ │ └── index.ts │ │ │ ├── pipelines │ │ │ │ └── index.ts │ │ │ ├── repositories │ │ │ │ └── PipelineJobRepository.ts │ │ │ ├── scheduler │ │ │ │ └── index.ts │ │ │ └── tidb │ │ │ │ └── tidb.ts │ │ ├── routes │ │ │ ├── pipelines │ │ │ │ └── _name │ │ │ │ │ └── full_sync │ │ │ │ │ └── index.ts │ │ │ └── root.ts │ │ └── utils │ │ │ ├── db.ts │ │ │ └── time.ts │ └── tsconfig.json ├── prefetch │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── env.ts │ │ ├── index.ts │ │ ├── job │ │ │ ├── executor.ts │ │ │ ├── generator.ts │ │ │ └── scheduler.ts │ │ ├── logger.ts │ │ ├── metrics.ts │ │ └── utils │ │ │ └── db.ts │ └── tsconfig.json ├── sync-github-data │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── prisma │ │ └── schema.prisma │ ├── src │ │ ├── commands │ │ │ ├── repos │ │ │ │ ├── mark-deleted.ts │ │ │ │ ├── pull.ts │ │ │ │ ├── sync-in-batch.ts │ │ │ │ └── sync-in-concurrent.ts │ │ │ └── users │ │ │ │ ├── format-address.ts │ │ │ │ ├── format-orgs.ts │ │ │ │ ├── load-orgs.ts │ │ │ │ ├── mark-bots.ts │ │ │ │ └── sync-in-batch.ts │ │ ├── dao │ │ │ ├── github-repo-dao.ts │ │ │ ├── github-user-dao.ts │ │ │ └── location-cache-dao.ts │ │ ├── env.ts │ │ ├── index.ts │ │ ├── libs │ │ │ ├── concurrent.ts │ │ │ ├── db │ │ │ │ ├── helper.ts │ │ │ │ └── new.ts │ │ │ ├── github │ │ │ │ ├── helper.ts │ │ │ │ └── octokit.ts │ │ │ ├── locator │ │ │ │ ├── LocationCache.ts │ │ │ │ ├── Locator.ts │ │ │ │ └── provider │ │ │ │ │ └── nominatim │ │ │ │ │ ├── command │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── mixin │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── nominatim-common-command.mixin.ts │ │ │ │ │ └── nominatim-geocode.command.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── interface │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── nominatim-geocode-query.interface.ts │ │ │ │ │ └── nominatim-query.interface.ts │ │ │ │ │ ├── nominatim.provider.ts │ │ │ │ │ └── transformer │ │ │ │ │ ├── index.ts │ │ │ │ │ └── nominatim-location.transformer.ts │ │ │ ├── sleep.ts │ │ │ └── times.ts │ │ ├── logger.ts │ │ └── typings │ │ │ └── github.ts │ └── tsconfig.json └── types │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── schema │ ├── openapi-2021-09-28.schema.json │ └── query.schema.json │ ├── src │ ├── index.ts │ └── query.schema.d.ts │ └── tsconfig.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── web ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .nvmrc ├── .preset-analyze ├── Dockerfile ├── README.md ├── _blog │ ├── authors.yml │ ├── deep-insight-about-oss-database-2021.mdx │ ├── difference-between-mysql-compatible-databases.md │ └── why-you-should-choose-tidb.mdx ├── babel.config.js ├── blog │ ├── authors.yml │ ├── chat2query-tutorials │ │ ├── how-to-use-chat2query.mp4 │ │ ├── import.png │ │ └── index.mdx │ ├── deep-insight-into-js-framework-2021 │ │ ├── index.mdx │ │ └── jsframework.png │ ├── deep-insight-into-lowcode-development-tools-2021 │ │ ├── index.mdx │ │ └── lowcode.png │ ├── deep-insight-into-open-source-databases │ │ ├── index.mdx │ │ └── oss-database.png │ ├── deep-insight-into-programming-languages-2021 │ │ ├── index.mdx │ │ └── language.png │ ├── deep-insight-into-web-framework-2021 │ │ ├── index.mdx │ │ └── webframework.png │ ├── explore-deep-in-4.6-billion-github-events │ │ ├── The star history of K8s and Moby.png │ │ ├── banner-ossinsight-explore-deep.jpg │ │ ├── companies-who-contribute-the-most-to-programing-languages.png │ │ ├── employment-distribution-of-stargazers.png │ │ ├── geographical-distribution-database-stargazers.png │ │ ├── geographicla-distribution-of-stargazers.png │ │ ├── heat-map.png │ │ ├── index.md │ │ ├── issues-received-by-leading-open-source-databases.png │ │ ├── monthly-and-accumulated-pr-number.png │ │ ├── monthly-pushes-and-commits.png │ │ ├── number-of-lines-of-code-change-each-month.png │ │ ├── panoramic-view-of-key-github-metrics.png │ │ ├── pr-number-of-pl-repos.png │ │ ├── star-growth-trend-of-leading-databases.png │ │ ├── star-growth-trends-of-leading-programming-languages.png │ │ ├── the-star-history.png │ │ └── total-pr-number-each-month-and-pr-groups.png │ ├── github-data-is-booming │ │ ├── bot-event-trending.jpg │ │ ├── bot-events-vs-human-events.jpg │ │ ├── github-data-is-booming.jpg │ │ ├── github-event-prediction.jpg │ │ ├── github-event-trending.jpg │ │ ├── gitub-events-exceed-10-billion.jpg │ │ ├── human-event-fit-vs-bot-event-fit.jpg │ │ ├── index.mdx │ │ └── oss-insight-website.png │ ├── how-it-works │ │ ├── how-it-works.jpg │ │ ├── index.md │ │ └── thumbnail.png │ ├── how-to-build-oss-comparison-gpt │ │ └── index.mdx │ ├── how-to-learn-sql-easily-by-visualizing-with-chatgpt │ │ └── index.mdx │ ├── reduce-query-latency │ │ ├── explain-query-result.jpg │ │ ├── index.mdx │ │ ├── indexrangescan-non-clustered.jpg │ │ ├── logical-structure.jpg │ │ ├── query-result.jpg │ │ ├── read-270000-rows-from tikv-server.jpg │ │ ├── read-270000-rows-from-tikv-server.jpg │ │ ├── reduce-online-serving-latency-with-distributed-sql-database.jpg │ │ └── repository-analysis-page.jpg │ ├── saas-insight-for-building-a-real-time-crm-application │ │ ├── index.md │ │ └── thumbnail.png │ ├── say-thanks-to-github-robots │ │ ├── bot_automatically_completes_a_pull_request.png │ │ ├── index.mdx │ │ ├── love-code-robots-cover.png │ │ ├── the_total_number_of_github_bots.png │ │ └── too_long_time_to_load_profile.png │ ├── trends-and-insights-from-github-2022 │ │ ├── activity-levels-of-popular-topics.png │ │ ├── ai-repositories.png │ │ ├── database-repositories.png │ │ ├── developer-behavior-distribution-from-monday-to-sunday.png │ │ ├── developer-behavior-distribution-on-weekdays-and-weekends.png │ │ ├── developers-most-stars.png │ │ ├── geographic-distribution-of-developer-behavior.png │ │ ├── github-actions-repositories.png │ │ ├── index.mdx │ │ ├── low-code-repositories.png │ │ ├── most-active-developers.png │ │ ├── most-popular-repositories-2022.png │ │ ├── open-source-highlights-trends-and-insights-from-github-2022.png │ │ ├── top-back-end-programming-languages.png │ │ ├── top-programming-languages.png │ │ └── web3-repositories.png │ ├── try-it-yourself │ │ ├── create-cluster.png │ │ ├── dev-tier.png │ │ ├── fill.png │ │ ├── import.png │ │ ├── index.md │ │ └── web-shell.png │ ├── unsung-heroes-of-open-source │ │ ├── core-js-contributors.png │ │ ├── core-js-maintainer.png │ │ ├── core-js-star.png │ │ ├── curl-contributor.png │ │ ├── curl-maintainer.png │ │ ├── homebrew-contributor.png │ │ ├── imagemagick-contributor.png │ │ ├── imagemagick-lastmonth.png │ │ ├── index.mdx │ │ ├── log4j2-contributor.png │ │ ├── log4j2-stars.png │ │ ├── mycli-commit.png │ │ ├── mycli-contributor.png │ │ └── openssl-contributor.png │ ├── who-works-the-longest-hours-on-github │ │ └── index.md │ └── why-we-choose-tidb-to-support-ossinsight │ │ ├── github-events-updates.gif │ │ ├── github-events.png │ │ ├── how-different-db-handle-github-data.png │ │ ├── index.mdx │ │ ├── javascript-framework-rankings.png │ │ ├── olap-onlineserving.jpg │ │ ├── scalability-SQL.jpg │ │ ├── sharded-architecture.png │ │ ├── tidb-execution-plan-2.png │ │ ├── tidb-key-visualizer.png │ │ ├── tidb-scanned-kennytm.png │ │ ├── top-database-by-issue-creators.png │ │ ├── twitter-1.png │ │ └── twitter-2.jpg ├── docs │ ├── about.md │ ├── api │ │ ├── collection-repo-ranking-by-issues.api.mdx │ │ ├── collection-repo-ranking-by-prs.api.mdx │ │ ├── collection-repo-ranking-by-stars.api.mdx │ │ ├── issue-creators-history.api.mdx │ │ ├── list-collections.api.mdx │ │ ├── list-countries-of-issue-creators.api.mdx │ │ ├── list-countries-of-pr-creators.api.mdx │ │ ├── list-countries-of-stargazers.api.mdx │ │ ├── list-hot-collections.api.mdx │ │ ├── list-issue-creators.api.mdx │ │ ├── list-organizations-of-issue-creators.api.mdx │ │ ├── list-organizations-of-pr-creators.api.mdx │ │ ├── list-organizations-of-stargazers.api.mdx │ │ ├── list-pull-request-creators.api.mdx │ │ ├── list-repos-of-collection.api.mdx │ │ ├── list-trending-repos.api.mdx │ │ ├── ossinsight-public-api.info.mdx │ │ ├── pull-request-creators-history.api.mdx │ │ ├── showcase.md │ │ ├── sidebar.js │ │ └── stargazers-history.api.mdx │ ├── faq.md │ └── workshop │ │ ├── _category_.yml │ │ ├── img │ │ └── new-personal-access-token.png │ │ ├── ossinsight-lite │ │ ├── _category_.yml │ │ ├── advanced-features.md │ │ ├── introduction.md │ │ ├── setup-github-action.md │ │ ├── setup-tidb-serverless.md │ │ └── setup-vercel.md │ │ └── overview.mdx ├── docusaurus.config.js ├── package-lock.json ├── package.json ├── patches │ └── react-share+5.1.0.patch ├── plugins │ ├── .gitignore │ ├── alias │ │ └── index.ts │ ├── analyze │ │ └── index.ts │ ├── define │ │ └── index.ts │ ├── dynamic-route │ │ └── index.ts │ ├── experimental-features │ │ └── index.ts │ ├── gtag │ │ ├── content-group.ts │ │ ├── gtag.dev.ts │ │ ├── gtag.ts │ │ └── index.ts │ ├── mui │ │ ├── index.ts │ │ ├── serverEntry.js.md5 │ │ └── serverEntry.js.patch │ ├── prefetch │ │ └── index.ts │ └── tsconfig.json ├── prefetch.mjs ├── sidebars.js ├── src │ ├── api │ │ ├── _todo_hardcoded.ts │ │ ├── axios │ │ │ ├── auth.ts │ │ │ ├── cache.ts │ │ │ ├── compact.ts │ │ │ └── type.ts │ │ ├── client.ts │ │ ├── core.ts │ │ ├── explorer.ts │ │ ├── gh.ts │ │ ├── index.ts │ │ ├── user.ts │ │ └── ws.ts │ ├── client │ │ ├── linkedin.js │ │ └── sentry.ts │ ├── components │ │ ├── Ads │ │ │ ├── HowItWorks.tsx │ │ │ ├── VideoAds.tsx │ │ │ └── index.tsx │ │ ├── AnalyzeSelector │ │ │ └── index.tsx │ │ ├── Anchor.tsx │ │ ├── AuthorizedContent.tsx │ │ ├── BasicCharts │ │ │ ├── BarChart.tsx │ │ │ ├── DataGrid.tsx │ │ │ ├── HeatMap.tsx │ │ │ ├── PieChart.tsx │ │ │ ├── WorldMapChart.tsx │ │ │ ├── data-grid.module.css │ │ │ ├── index.ts │ │ │ ├── theme.ts │ │ │ └── withSql.tsx │ │ ├── BrowserHash │ │ │ └── index.tsx │ │ ├── Cards │ │ │ ├── Cards.tsx │ │ │ ├── StandardCard.tsx │ │ │ └── index.ts │ │ ├── Chart │ │ │ ├── Chart.tsx │ │ │ ├── defaults.ts │ │ │ ├── fonts.ts │ │ │ └── index.tsx │ │ ├── CommonChart │ │ │ ├── CommonChart.jsx │ │ │ ├── context.ts │ │ │ └── index.js │ │ ├── CompareHeader │ │ │ ├── CompareHeader.tsx │ │ │ ├── DateRangeSelector.tsx │ │ │ ├── NewCompareHeader.tsx │ │ │ ├── RepoSelector.tsx │ │ │ ├── style.css │ │ │ └── useSearchRepo.ts │ │ ├── ContributorsCharts │ │ │ └── index.tsx │ │ ├── CoolList │ │ │ ├── CoolList.tsx │ │ │ └── index.ts │ │ ├── DebugDialog │ │ │ ├── DebugDialog.tsx │ │ │ ├── index.ts │ │ │ └── useDebugDialog.tsx │ │ ├── Diff │ │ │ └── index.tsx │ │ ├── ECharts │ │ │ ├── ECharts.tsx │ │ │ ├── EChartsx.tsx │ │ │ ├── context.tsx │ │ │ ├── index.tsx │ │ │ └── lazy.tsx │ │ ├── Experimental │ │ │ └── index.ts │ │ ├── Footer │ │ │ ├── icon-1.png │ │ │ ├── icon-2.png │ │ │ ├── icon-3.png │ │ │ └── index.tsx │ │ ├── GeneralSearch │ │ │ ├── index.tsx │ │ │ └── useGeneralSearch.tsx │ │ ├── GradientDashedBox │ │ │ ├── GradientDashedBox.tsx │ │ │ ├── index.tsx │ │ │ └── styled.ts │ │ ├── GroupSelect │ │ │ ├── GroupSelectContext.ts │ │ │ ├── groups.ts │ │ │ └── index.tsx │ │ ├── HomepageFeatures.module.css │ │ ├── HotCollection │ │ │ └── index.tsx │ │ ├── Image │ │ │ ├── index.tsx │ │ │ └── style.module.css │ │ ├── InViewContainer │ │ │ └── index.tsx │ │ ├── InViewContext │ │ │ └── index.ts │ │ ├── Loading.tsx │ │ ├── Notifications │ │ │ ├── Notifications.tsx │ │ │ ├── context.ts │ │ │ └── index.ts │ │ ├── RealtimeSummary │ │ │ ├── hooks.ts │ │ │ └── index.tsx │ │ ├── RemoteCharts │ │ │ ├── barchart │ │ │ │ ├── Chart.ts │ │ │ │ ├── Form.ts │ │ │ │ └── index.js │ │ │ ├── contributors-per-year │ │ │ │ ├── Chart.ts │ │ │ │ ├── Form.js │ │ │ │ └── index.js │ │ │ ├── dynamic-line │ │ │ │ ├── Chart.ts │ │ │ │ ├── Form.ts │ │ │ │ └── index.js │ │ │ ├── dynamic-stars │ │ │ │ ├── Chart.ts │ │ │ │ ├── Form.ts │ │ │ │ └── index.js │ │ │ ├── events-per-year │ │ │ │ ├── Chart.ts │ │ │ │ ├── Form.js │ │ │ │ └── index.js │ │ │ ├── heatmapchart │ │ │ │ ├── Chart.ts │ │ │ │ ├── Form.ts │ │ │ │ └── index.js │ │ │ ├── histories │ │ │ │ ├── Chart.ts │ │ │ │ ├── Form.tsx │ │ │ │ └── index.js │ │ │ ├── hook.ts │ │ │ ├── piechart │ │ │ │ ├── Chart.tsx │ │ │ │ ├── Form.ts │ │ │ │ └── index.js │ │ │ ├── queries.ts │ │ │ ├── withQuery.tsx │ │ │ ├── worldmapchart │ │ │ │ ├── Chart.ts │ │ │ │ ├── Form.ts │ │ │ │ └── index.js │ │ │ ├── yoychart │ │ │ │ ├── Chart.ts │ │ │ │ ├── Form.ts │ │ │ │ └── index.js │ │ │ └── zscorechart │ │ │ │ ├── Chart.ts │ │ │ │ ├── Form.ts │ │ │ │ └── index.js │ │ ├── RippleDot │ │ │ ├── index.tsx │ │ │ └── rippleDotClasses.ts │ │ ├── ScrollSpy │ │ │ ├── ScrollSpy.tsx │ │ │ └── index.ts │ │ ├── Section │ │ │ ├── Section.tsx │ │ │ ├── SectionHeading.tsx │ │ │ └── index.tsx │ │ ├── ShareButtons │ │ │ ├── index.module.css │ │ │ └── index.tsx │ │ ├── SpecialCharts │ │ │ ├── DynamicLineChart.tsx │ │ │ ├── DynamicStarsChart.tsx │ │ │ ├── YoyChart.tsx │ │ │ ├── ZScoreChart.tsx │ │ │ └── index.ts │ │ ├── ThemeAdaptor │ │ │ └── index.tsx │ │ ├── TiDBCloudLink │ │ │ ├── context.tsx │ │ │ └── index.tsx │ │ ├── TileSelect │ │ │ └── index.tsx │ │ ├── github │ │ │ ├── Owner │ │ │ │ └── index.tsx │ │ │ └── index.ts │ │ ├── milestone │ │ │ ├── MilestoneLite.tsx │ │ │ ├── MilestoneMessage.tsx │ │ │ ├── MilestoneTimeline.tsx │ │ │ ├── SubscribeButton.tsx │ │ │ ├── hooks.ts │ │ │ ├── icon.svg │ │ │ └── style.module.css │ │ └── params │ │ │ ├── index.ts │ │ │ └── useSelectParam.tsx │ ├── context │ │ └── user.tsx │ ├── css │ │ ├── custom.css │ │ └── data-explore.css │ ├── dynamic-pages │ │ ├── analyze-user │ │ │ ├── Navigator.tsx │ │ │ ├── charts │ │ │ │ ├── ChartWrapper.tsx │ │ │ │ ├── Common.tsx │ │ │ │ ├── context.ts │ │ │ │ └── time-distribution │ │ │ │ │ └── index.tsx │ │ │ ├── colors.module.css │ │ │ ├── colors.ts │ │ │ ├── hooks │ │ │ │ ├── useDimension.tsx │ │ │ │ └── usePersonal.ts │ │ │ ├── index.tsx │ │ │ └── sections │ │ │ │ ├── 0-Overview.tsx │ │ │ │ ├── 1-Behaviour.tsx │ │ │ │ ├── 2-Star.tsx │ │ │ │ ├── 3-Code.tsx │ │ │ │ ├── 4-CodeReview.tsx │ │ │ │ ├── 5-Issue.tsx │ │ │ │ └── 6-Activities.tsx │ │ ├── analyze │ │ │ ├── Navigator.tsx │ │ │ ├── Section.tsx │ │ │ ├── charts │ │ │ │ ├── Analyze │ │ │ │ │ └── index.tsx │ │ │ │ ├── chart.tsx │ │ │ │ ├── common-duration │ │ │ │ │ └── index.ts │ │ │ │ ├── companies │ │ │ │ │ └── index.ts │ │ │ │ ├── context.ts │ │ │ │ ├── heatmap │ │ │ │ │ └── index.tsx │ │ │ │ ├── issue │ │ │ │ │ └── index.ts │ │ │ │ ├── line │ │ │ │ │ └── index.tsx │ │ │ │ ├── list │ │ │ │ │ ├── List.tsx │ │ │ │ │ └── styled.tsx │ │ │ │ ├── loc │ │ │ │ │ └── index.ts │ │ │ │ ├── montly-cards │ │ │ │ │ ├── Bars.tsx │ │ │ │ │ ├── BarsCompare.tsx │ │ │ │ │ ├── Lines.tsx │ │ │ │ │ ├── LinesCompare.tsx │ │ │ │ │ ├── Map.tsx │ │ │ │ │ ├── MonthlyDetailsCard.tsx │ │ │ │ │ ├── MonthlySummaryCard.tsx │ │ │ │ │ ├── TopContributors.tsx │ │ │ │ │ ├── base.tsx │ │ │ │ │ ├── hooks.ts │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── ui.tsx │ │ │ │ ├── options │ │ │ │ │ ├── _danger.ts │ │ │ │ │ ├── axis.ts │ │ │ │ │ ├── custom │ │ │ │ │ │ └── d3-hierarchy.ts │ │ │ │ │ ├── dataset.ts │ │ │ │ │ ├── datazoom.ts │ │ │ │ │ ├── geo.ts │ │ │ │ │ ├── grid.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── legend.ts │ │ │ │ │ ├── series.ts │ │ │ │ │ ├── sizes.ts │ │ │ │ │ ├── title.ts │ │ │ │ │ ├── tooltip.ts │ │ │ │ │ ├── utils │ │ │ │ │ │ ├── analyze.ts │ │ │ │ │ │ ├── axis.ts │ │ │ │ │ │ ├── data.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── visual-map.ts │ │ │ │ ├── pr │ │ │ │ │ └── index.ts │ │ │ │ ├── push-and-commits │ │ │ │ │ └── index.ts │ │ │ │ ├── summary │ │ │ │ │ ├── Summary.tsx │ │ │ │ │ ├── SummaryItem.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styled.ts │ │ │ │ ├── utils.ts │ │ │ │ └── worldmap │ │ │ │ │ └── index.tsx │ │ │ ├── index.tsx │ │ │ ├── playground │ │ │ │ ├── Playground.tsx │ │ │ │ ├── PlaygroundButton.tsx │ │ │ │ ├── PlaygroundContent.tsx │ │ │ │ ├── PredefinedGroups.tsx │ │ │ │ ├── QuestionField.tsx │ │ │ │ ├── ResultBlock.tsx │ │ │ │ ├── SQLEditor.tsx │ │ │ │ ├── arrow.svg │ │ │ │ ├── hooks.ts │ │ │ │ ├── icon.png │ │ │ │ ├── predefined.ts │ │ │ │ └── styled.tsx │ │ │ ├── sections │ │ │ │ ├── 0-Overview.tsx │ │ │ │ ├── 1-People.tsx │ │ │ │ ├── 2-Commits.tsx │ │ │ │ ├── 3-PullRequests.tsx │ │ │ │ ├── 4-Issues.tsx │ │ │ │ ├── 5-Repository.tsx │ │ │ │ ├── 6-Contributors.tsx │ │ │ │ └── 98-Highlights.tsx │ │ │ ├── styles.module.css │ │ │ └── typography.tsx │ │ ├── collections │ │ │ ├── components │ │ │ │ ├── EditCollection.tsx │ │ │ │ ├── IconTab.tsx │ │ │ │ └── Watermark.tsx │ │ │ ├── context.ts │ │ │ ├── dimensions.tsx │ │ │ ├── dynamic-trends.tsx │ │ │ ├── hooks │ │ │ │ ├── data.ts │ │ │ │ ├── useCollection.ts │ │ │ │ ├── useCollectionsSidebar.ts │ │ │ │ ├── useTabs.tsx │ │ │ │ └── withRemote.tsx │ │ │ ├── index.tsx │ │ │ ├── layout.tsx │ │ │ ├── sections │ │ │ │ ├── history-rank.tsx │ │ │ │ ├── history-sort.tsx │ │ │ │ ├── history.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── month-rank.tsx │ │ │ │ ├── typograpy.tsx │ │ │ │ └── utils.ts │ │ │ ├── styles.module.css │ │ │ └── thumbnail.png │ │ └── stats │ │ │ ├── components │ │ │ ├── IndexInfo.tsx │ │ │ ├── IndexStats.tsx │ │ │ ├── LiveSql.tsx │ │ │ ├── TableInfo.tsx │ │ │ ├── theme.css │ │ │ └── useInterval.ts │ │ │ ├── index.tsx │ │ │ └── tables │ │ │ └── index.tsx │ ├── hooks │ │ ├── force-update.ts │ │ ├── mounted.ts │ │ ├── operation.ts │ │ ├── theme.ts │ │ ├── url-search-state.ts │ │ ├── useCookie.ts │ │ └── visibility.ts │ ├── lib │ │ ├── areacode.ts │ │ ├── code.json │ │ ├── geo.json │ │ └── promise-interval.ts │ ├── pages │ │ ├── 2022 │ │ │ ├── _charts │ │ │ │ ├── actions.json │ │ │ │ ├── activity.json │ │ │ │ ├── ai.json │ │ │ │ ├── backend-languages.json │ │ │ │ ├── country-data.json │ │ │ │ ├── database.json │ │ │ │ ├── developers.json │ │ │ │ ├── env.d.ts │ │ │ │ ├── languages.json │ │ │ │ ├── low-code.json │ │ │ │ ├── stargazers.json │ │ │ │ ├── web3.json │ │ │ │ └── weekday-distribution.json │ │ │ ├── _components │ │ │ │ ├── Insights.tsx │ │ │ │ ├── Keynote.tsx │ │ │ │ ├── Repos.tsx │ │ │ │ ├── Section.tsx │ │ │ │ ├── Share.tsx │ │ │ │ ├── Split.tsx │ │ │ │ ├── charts │ │ │ │ │ ├── BarChart.tsx │ │ │ │ │ ├── CountryEvents.tsx │ │ │ │ │ ├── LineChart.tsx │ │ │ │ │ ├── MostActiveDevelopersChart.tsx │ │ │ │ │ ├── PieChart.tsx │ │ │ │ │ ├── PieOutLabelPlugin.ts │ │ │ │ │ ├── RankChart.tsx │ │ │ │ │ ├── WeekdayDistributionData.tsx │ │ │ │ │ ├── colors.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── responsive.ts │ │ │ │ │ └── theme.ts │ │ │ │ ├── colors.module.css │ │ │ │ ├── hooks │ │ │ │ │ └── useIsLarge.tsx │ │ │ │ ├── styled.tsx │ │ │ │ └── typograph.tsx │ │ │ ├── _icons │ │ │ │ ├── arrow.svg │ │ │ │ ├── mro.png │ │ │ │ └── ms.svg │ │ │ ├── _sections │ │ │ │ ├── 0-Banner.tsx │ │ │ │ ├── 2-Languages.tsx │ │ │ │ ├── 3-Countries.tsx │ │ │ │ ├── 4-WeekdayWeekend.tsx │ │ │ │ ├── 5-Topics.tsx │ │ │ │ ├── 6-PopularRepos.tsx │ │ │ │ ├── 7-ActiveRepos.tsx │ │ │ │ ├── 8-Stargazers.tsx │ │ │ │ ├── 9-MostActiveDevelopers.tsx │ │ │ │ └── 99-Appendix.tsx │ │ │ └── index.tsx │ │ ├── analyze-company │ │ │ ├── _components │ │ │ │ ├── Companies.tsx │ │ │ │ ├── SearchCompany.tsx │ │ │ │ └── hooks.tsx │ │ │ └── index.tsx │ │ ├── collections │ │ │ ├── _components │ │ │ │ ├── Collections.tsx │ │ │ │ ├── WordCloud.tsx │ │ │ │ ├── filters.tsx │ │ │ │ └── style.module.css │ │ │ └── index.tsx │ │ ├── compare.jsx │ │ ├── experimental.tsx │ │ ├── explore │ │ │ ├── _components │ │ │ │ ├── Ads.tsx │ │ │ │ ├── AdsSection │ │ │ │ │ ├── AdsSection.tsx │ │ │ │ │ ├── CloudAd.tsx │ │ │ │ │ ├── OurData.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── AlertBlock.tsx │ │ │ │ ├── BotIcon.tsx │ │ │ │ ├── BotMessage │ │ │ │ │ ├── BotMessage.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── ChatMessages │ │ │ │ │ ├── ChatMessages.tsx │ │ │ │ │ ├── hook.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── Decorators.tsx │ │ │ │ ├── ErrorBlock.tsx │ │ │ │ ├── Execution.tsx │ │ │ │ ├── ExploreGlobalAds.tsx │ │ │ │ ├── ExploreMain.tsx │ │ │ │ ├── ExploreSteps.tsx │ │ │ │ ├── Faq.tsx │ │ │ │ ├── Feedback.tsx │ │ │ │ ├── GhAvatar.tsx │ │ │ │ ├── Header.tsx │ │ │ │ ├── Info.tsx │ │ │ │ ├── Layout.tsx │ │ │ │ ├── Prompt.tsx │ │ │ │ ├── QuestionCard.tsx │ │ │ │ ├── QuestionList.tsx │ │ │ │ ├── QuestionSettings.tsx │ │ │ │ ├── Questions.tsx │ │ │ │ ├── RecommendList.tsx │ │ │ │ ├── ResultSection │ │ │ │ │ ├── ErrorMessage.tsx │ │ │ │ │ ├── ExecutionInfoDialog.tsx │ │ │ │ │ ├── ResultSection.tsx │ │ │ │ │ ├── ShowExecutionInfoButton.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── Search.tsx │ │ │ │ ├── Section │ │ │ │ │ ├── Section.tsx │ │ │ │ │ ├── SectionStatusIcon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── styled.ts │ │ │ │ ├── ShareButtons.tsx │ │ │ │ ├── Side.tsx │ │ │ │ ├── SqlSection │ │ │ │ │ ├── AIMessages.tsx │ │ │ │ │ ├── AIMessagesV2.tsx │ │ │ │ │ ├── AIMessagesV3.tsx │ │ │ │ │ ├── CopyButton.tsx │ │ │ │ │ ├── ErrorMessage.tsx │ │ │ │ │ ├── Header.tsx │ │ │ │ │ ├── SqlSection.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── styled.ts │ │ │ │ │ └── utils.ts │ │ │ │ ├── Suggestions.tsx │ │ │ │ ├── SummaryCard.tsx │ │ │ │ ├── SwitchLayout.tsx │ │ │ │ ├── TagSelector.tsx │ │ │ │ ├── TypewriterEffect.tsx │ │ │ │ ├── beta.svg │ │ │ │ ├── charts │ │ │ │ │ ├── BadDataAlert.tsx │ │ │ │ │ ├── BarChart.tsx │ │ │ │ │ ├── EmptyDataAlert.tsx │ │ │ │ │ ├── LineChart.tsx │ │ │ │ │ ├── MapChart.tsx │ │ │ │ │ ├── NumberCard.tsx │ │ │ │ │ ├── PersonalCard.tsx │ │ │ │ │ ├── PieChart.tsx │ │ │ │ │ ├── RepoCard.tsx │ │ │ │ │ ├── TableChart.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── utils.ts │ │ │ │ ├── context.ts │ │ │ │ ├── errorOverride.ts │ │ │ │ ├── highlighted.tsx │ │ │ │ ├── img │ │ │ │ │ ├── ads-1.svg │ │ │ │ │ ├── ads-2.png │ │ │ │ │ ├── ads-prompts.png │ │ │ │ │ ├── img1.png │ │ │ │ │ ├── img2.png │ │ │ │ │ └── upload.svg │ │ │ │ ├── issueTemplates │ │ │ │ │ └── index.ts │ │ │ │ └── useQuestion.tsx │ │ │ └── index.tsx │ │ ├── home │ │ │ ├── _components │ │ │ │ ├── Section.tsx │ │ │ │ ├── StackItem.tsx │ │ │ │ ├── Tag.tsx │ │ │ │ ├── events.tsx │ │ │ │ ├── responsive.tsx │ │ │ │ └── typography.tsx │ │ │ ├── _index.tsx │ │ │ └── _sections │ │ │ │ ├── 0-summary │ │ │ │ ├── index.tsx │ │ │ │ ├── left │ │ │ │ │ ├── EventLine.tsx │ │ │ │ │ ├── FooterLine.tsx │ │ │ │ │ ├── GeneralSearchLine.tsx │ │ │ │ │ ├── TitleLine.tsx │ │ │ │ │ ├── TotalNumber.tsx │ │ │ │ │ └── index.tsx │ │ │ │ └── right │ │ │ │ │ ├── Events.tsx │ │ │ │ │ ├── EventsChart.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── 1-collections │ │ │ │ ├── Collections.tsx │ │ │ │ ├── hook.ts │ │ │ │ ├── index.tsx │ │ │ │ └── useScrollable │ │ │ │ │ └── index.ts │ │ │ │ ├── 2-toplistv2 │ │ │ │ ├── TopListV2.tsx │ │ │ │ ├── hook.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── language-colors.json │ │ │ │ ├── 3-workshop │ │ │ │ ├── Workshop.tsx │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ ├── index.tsx │ │ ├── subscriptions │ │ │ ├── EnableEmailSwitch.tsx │ │ │ └── index.tsx │ │ └── try-your-own-dataset │ │ │ ├── _components │ │ │ └── Section │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.css │ │ │ ├── icon-set.svg │ │ │ ├── image-1.png │ │ │ ├── image-2.png │ │ │ ├── image-3.png │ │ │ ├── image-4.png │ │ │ └── index.tsx │ ├── shim.d.ts │ ├── theme │ │ ├── BlogPostItem │ │ │ └── index.tsx │ │ ├── CodeBlock │ │ │ └── CopyButton │ │ │ │ ├── copy.ts │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.css │ │ ├── CustomPage │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ │ ├── DocItem │ │ │ └── Layout │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.css │ │ ├── DocSidebar │ │ │ ├── Desktop │ │ │ │ ├── Content │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.css │ │ │ ├── Mobile │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── DocSidebarItems │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ │ ├── Footer │ │ │ ├── Layout │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── Layout │ │ │ ├── Provider │ │ │ │ └── index.tsx │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ │ ├── Navbar │ │ │ └── Content │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.css │ │ ├── NavbarItem │ │ │ ├── AnalyzeSearchNavbarItem.tsx │ │ │ ├── ComponentTypes.tsx │ │ │ ├── LoginItem.tsx │ │ │ ├── RealtimeSummaryNavbarItem.tsx │ │ │ └── useResponsiveAuth0.tsx │ │ ├── NotFound.tsx │ │ └── Root.tsx │ └── utils │ │ ├── dom.ts │ │ ├── error.ts │ │ ├── ga.ts │ │ ├── generate.ts │ │ ├── gh.ts │ │ ├── intl.ts │ │ ├── mui.ts │ │ ├── promisify.ts │ │ ├── react.ts │ │ ├── ref.ts │ │ ├── share.ts │ │ └── value.ts ├── static │ ├── .nojekyll │ ├── charts │ │ ├── theme │ │ │ ├── dark.js │ │ │ ├── infographic.js │ │ │ ├── macarons.js │ │ │ ├── roma.js │ │ │ ├── shine.js │ │ │ └── vintage.js │ │ ├── tidb-vs-mysql-compatible-databases-code.html │ │ ├── tidb-vs-mysql-compatible-databases-contribution.html │ │ ├── tidb-vs-mysql-compatible-databases-contributor.html │ │ └── tidb-vs-mysql-compatible-databases-pull-request.html │ ├── img │ │ ├── 2022 │ │ │ └── thumbnail.png │ │ ├── auth0-logo.png │ │ ├── blogs-thumbnail.png │ │ ├── bot.png │ │ ├── data-explorer-showcase.gif │ │ ├── data-explorer-thumbnail.png │ │ ├── db │ │ │ ├── arangodb.png │ │ │ ├── citus.png │ │ │ ├── clickhouse.png │ │ │ ├── cockroach.png │ │ │ ├── couchdb.png │ │ │ ├── crate.png │ │ │ ├── dgraph.png │ │ │ ├── doris.png │ │ │ ├── druid.png │ │ │ ├── elasticsearch.png │ │ │ ├── etcd.png │ │ │ ├── flink.png │ │ │ ├── foundationdb.png │ │ │ ├── greenplum.png │ │ │ ├── hadoop.png │ │ │ ├── hbase.png │ │ │ ├── hive.png │ │ │ ├── ignite.png │ │ │ ├── influxdb.png │ │ │ ├── ksql.png │ │ │ ├── kylin.png │ │ │ ├── mariadb.png │ │ │ ├── materialize.png │ │ │ ├── mongodb.png │ │ │ ├── nebula.png │ │ │ ├── oceanbase.png │ │ │ ├── percona-server.png │ │ │ ├── pinot.png │ │ │ ├── presto.png │ │ │ ├── prometheus.png │ │ │ ├── questdb.png │ │ │ ├── redis.png │ │ │ ├── rocksdb.png │ │ │ ├── scylla.png │ │ │ ├── solr.png │ │ │ ├── spark.png │ │ │ ├── starrocks.png │ │ │ ├── tdengine.png │ │ │ ├── tidb.png │ │ │ ├── tikv.png │ │ │ ├── timescaledb.png │ │ │ ├── trino.png │ │ │ ├── vitess.png │ │ │ └── yugabyte-db.png │ │ ├── ellipse-1.svg │ │ ├── ellipse-2.svg │ │ ├── explore-logo-layer-0.png │ │ ├── explore-logo-layer-1.png │ │ ├── explore-logo-layer-2.png │ │ ├── favicon-1.png │ │ ├── github-bot-icon.svg │ │ ├── github-tables.png │ │ ├── lang │ │ │ ├── C++.png │ │ │ ├── C.png │ │ │ ├── Go.png │ │ │ ├── Java.png │ │ │ └── Rust.png │ │ ├── logo-small.png │ │ ├── logo.png │ │ ├── logo.svg │ │ ├── open-source-heroes-ads.png │ │ ├── openai-logo.svg │ │ ├── pingcap-logo-w.png │ │ ├── screenshots │ │ │ ├── homepage-collection.png │ │ │ ├── homepage-developer.png │ │ │ ├── homepage-repository.png │ │ │ ├── homepage.gif │ │ │ ├── homepage.png │ │ │ ├── line-chart.png │ │ │ ├── monthly-rankings-of-opensource-databases-in-may-1.png │ │ │ ├── monthly-rankings-of-opensource-databases-in-may-2.png │ │ │ ├── overview-of-tidb-repo.png │ │ │ ├── pipeline-chart.png │ │ │ └── user_list.png │ │ ├── tidb-cloud-logo-o.png │ │ ├── tidb-cloud-logo-t.svg │ │ ├── tidb-cloud-logo-w.png │ │ ├── tidb-logo-o.png │ │ ├── tidb-logo-o.svg │ │ ├── tidb-logo-w.png │ │ ├── tidb-logo.svg │ │ ├── video-ads-thumbnail.png │ │ ├── workshop-thumbnail.png │ │ └── workshop │ │ │ ├── add-secrets.png │ │ │ ├── enable-github-action.png │ │ │ ├── enter-desc.png │ │ │ ├── generate-new.png │ │ │ ├── personal-access-token.png │ │ │ └── run-workflow.png │ └── tencent5404883709865440848.txt ├── tsconfig.json └── types │ └── ossinsight.d.ts └── workshop.cn.ipynb /.dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/.dev.Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/dockerhub.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/.github/workflows/dockerhub.yml -------------------------------------------------------------------------------- /.github/workflows/preview.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/.github/workflows/preview.yaml -------------------------------------------------------------------------------- /.github/workflows/sync-collection-configs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/.github/workflows/sync-collection-configs.yml -------------------------------------------------------------------------------- /.github/workflows/verify-api-server.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/.github/workflows/verify-api-server.yml -------------------------------------------------------------------------------- /.github/workflows/verify-collection-configs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/.github/workflows/verify-collection-configs.yml -------------------------------------------------------------------------------- /.github/workflows/verify-query-configs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/.github/workflows/verify-query-configs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/.gitpod.Dockerfile -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/.husky/pre-push -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/README.md -------------------------------------------------------------------------------- /configs/allowed-origins.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/allowed-origins.yaml -------------------------------------------------------------------------------- /configs/collections/1.static-site-generator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/1.static-site-generator.yml -------------------------------------------------------------------------------- /configs/collections/10001.css-framework.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10001.css-framework.yml -------------------------------------------------------------------------------- /configs/collections/10004.web-framework.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10004.web-framework.yml -------------------------------------------------------------------------------- /configs/collections/10008.graph-database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10008.graph-database.yml -------------------------------------------------------------------------------- /configs/collections/10012.headless-cms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10012.headless-cms.yml -------------------------------------------------------------------------------- /configs/collections/10013.game-engine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10013.game-engine.yml -------------------------------------------------------------------------------- /configs/collections/10015.text-editor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10015.text-editor.yml -------------------------------------------------------------------------------- /configs/collections/10016.search-engine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10016.search-engine.yml -------------------------------------------------------------------------------- /configs/collections/10017.chaos-engineering.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10017.chaos-engineering.yml -------------------------------------------------------------------------------- /configs/collections/10018.apm-tool.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10018.apm-tool.yml -------------------------------------------------------------------------------- /configs/collections/10019.react-framework.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10019.react-framework.yml -------------------------------------------------------------------------------- /configs/collections/10020.cicd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10020.cicd.yml -------------------------------------------------------------------------------- /configs/collections/10021.api-gateway.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10021.api-gateway.yml -------------------------------------------------------------------------------- /configs/collections/10027.testing-tool.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10027.testing-tool.yml -------------------------------------------------------------------------------- /configs/collections/10030.finance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10030.finance.yml -------------------------------------------------------------------------------- /configs/collections/10031.web3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10031.web3.yml -------------------------------------------------------------------------------- /configs/collections/10033.identity-server.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10033.identity-server.yml -------------------------------------------------------------------------------- /configs/collections/10034.diagram-as-code.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10034.diagram-as-code.yml -------------------------------------------------------------------------------- /configs/collections/10035.paas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10035.paas.yml -------------------------------------------------------------------------------- /configs/collections/10036.wysiwyg-editor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10036.wysiwyg-editor.yml -------------------------------------------------------------------------------- /configs/collections/10037.hyperledger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10037.hyperledger.yml -------------------------------------------------------------------------------- /configs/collections/10038.hyperledger-besu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10038.hyperledger-besu.yml -------------------------------------------------------------------------------- /configs/collections/10042.rust-database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10042.rust-database.yml -------------------------------------------------------------------------------- /configs/collections/10043.go-database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10043.go-database.yml -------------------------------------------------------------------------------- /configs/collections/10044.modern-data-stack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10044.modern-data-stack.yml -------------------------------------------------------------------------------- /configs/collections/10045.tui-framework.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10045.tui-framework.yml -------------------------------------------------------------------------------- /configs/collections/10047.terminal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10047.terminal.yml -------------------------------------------------------------------------------- /configs/collections/10051.security-tool.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10051.security-tool.yml -------------------------------------------------------------------------------- /configs/collections/10052.golang-orm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10052.golang-orm.yml -------------------------------------------------------------------------------- /configs/collections/10054.monitoring-tool.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10054.monitoring-tool.yml -------------------------------------------------------------------------------- /configs/collections/10055.password-manager.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10055.password-manager.yml -------------------------------------------------------------------------------- /configs/collections/10056.data-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10056.data-integration.yml -------------------------------------------------------------------------------- /configs/collections/10058.mlops-tools.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10058.mlops-tools.yml -------------------------------------------------------------------------------- /configs/collections/10060.ios-framework.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10060.ios-framework.yml -------------------------------------------------------------------------------- /configs/collections/10061.slack-alternative.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10061.slack-alternative.yml -------------------------------------------------------------------------------- /configs/collections/10065.javascript-orm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10065.javascript-orm.yml -------------------------------------------------------------------------------- /configs/collections/10066.virtual-reality.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10066.virtual-reality.yml -------------------------------------------------------------------------------- /configs/collections/10067.robotics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10067.robotics.yml -------------------------------------------------------------------------------- /configs/collections/10068.x-as-code.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10068.x-as-code.yml -------------------------------------------------------------------------------- /configs/collections/10071.ansible-devtools.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10071.ansible-devtools.yml -------------------------------------------------------------------------------- /configs/collections/10073.cpp-cli-parsing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10073.cpp-cli-parsing.yml -------------------------------------------------------------------------------- /configs/collections/10076.llm-tools.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10076.llm-tools.yml -------------------------------------------------------------------------------- /configs/collections/10078.chatgpt-apps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10078.chatgpt-apps.yml -------------------------------------------------------------------------------- /configs/collections/10081.finops.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10081.finops.yml -------------------------------------------------------------------------------- /configs/collections/10082.web-scanner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10082.web-scanner.yml -------------------------------------------------------------------------------- /configs/collections/10084.ml-in-rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10084.ml-in-rust.yml -------------------------------------------------------------------------------- /configs/collections/10087.llm-devtools.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10087.llm-devtools.yml -------------------------------------------------------------------------------- /configs/collections/10088.webrtc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10088.webrtc.yml -------------------------------------------------------------------------------- /configs/collections/10090.go-web-frameworks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10090.go-web-frameworks.yml -------------------------------------------------------------------------------- /configs/collections/10094.vector-database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10094.vector-database.yml -------------------------------------------------------------------------------- /configs/collections/10095.graphrag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10095.graphrag.yml -------------------------------------------------------------------------------- /configs/collections/10099.mcp-client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10099.mcp-client.yml -------------------------------------------------------------------------------- /configs/collections/10100.baas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10100.baas.yml -------------------------------------------------------------------------------- /configs/collections/10101.anomaly-detection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/10101.anomaly-detection.yml -------------------------------------------------------------------------------- /configs/collections/2.open-source-database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/collections/2.open-source-database.yml -------------------------------------------------------------------------------- /configs/params-preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/params-preset.json -------------------------------------------------------------------------------- /configs/pipelines/format_org_names/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/pipelines/format_org_names/config.json -------------------------------------------------------------------------------- /configs/pipelines/format_org_names/process.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/pipelines/format_org_names/process.sql -------------------------------------------------------------------------------- /configs/pipelines/sync_org_repos/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/pipelines/sync_org_repos/config.json -------------------------------------------------------------------------------- /configs/pipelines/sync_org_repos/process.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/pipelines/sync_org_repos/process.sql -------------------------------------------------------------------------------- /configs/pipelines/sync_repo_issues/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/pipelines/sync_repo_issues/config.json -------------------------------------------------------------------------------- /configs/pipelines/sync_repo_issues/process.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/pipelines/sync_repo_issues/process.sql -------------------------------------------------------------------------------- /configs/prompts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /configs/public_api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/public_api/README.md -------------------------------------------------------------------------------- /configs/public_api/data_sources/cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/public_api/data_sources/cluster.json -------------------------------------------------------------------------------- /configs/public_api/dataapp_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/public_api/dataapp_config.json -------------------------------------------------------------------------------- /configs/public_api/doc.template.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/public_api/doc.template.mustache -------------------------------------------------------------------------------- /configs/public_api/http_endpoints/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/public_api/http_endpoints/config.json -------------------------------------------------------------------------------- /configs/public_api/http_endpoints/sql/GET-collections.sql: -------------------------------------------------------------------------------- 1 | USE gharchive_dev; 2 | SELECT id, name FROM collections WHERE public = 1; -------------------------------------------------------------------------------- /configs/public_api/http_endpoints/sql/GET-hello.sql: -------------------------------------------------------------------------------- 1 | USE gharchive_dev; 2 | SELECT 'Hello World' AS message; -------------------------------------------------------------------------------- /configs/public_api/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/public_api/openapi.yaml -------------------------------------------------------------------------------- /configs/queries/analyze-stars-map/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/analyze-stars-map/params.json -------------------------------------------------------------------------------- /configs/queries/analyze-stars-map/template.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/analyze-stars-map/template.sql -------------------------------------------------------------------------------- /configs/queries/events-increment/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/events-increment/params.json -------------------------------------------------------------------------------- /configs/queries/events-increment/template.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/events-increment/template.sql -------------------------------------------------------------------------------- /configs/queries/events-total/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/events-total/params.json -------------------------------------------------------------------------------- /configs/queries/events-total/template.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/events-total/template.sql -------------------------------------------------------------------------------- /configs/queries/get-repo-by-id/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/get-repo-by-id/params.json -------------------------------------------------------------------------------- /configs/queries/get-repo-by-id/template.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/get-repo-by-id/template.sql -------------------------------------------------------------------------------- /configs/queries/get-user-by-login/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/get-user-by-login/params.json -------------------------------------------------------------------------------- /configs/queries/get-user-by-login/template.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/get-user-by-login/template.sql -------------------------------------------------------------------------------- /configs/queries/orgs/commits/total/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/orgs/commits/total/params.json -------------------------------------------------------------------------------- /configs/queries/orgs/commits/total/template.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/orgs/commits/total/template.sql -------------------------------------------------------------------------------- /configs/queries/orgs/commits/trends/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/orgs/commits/trends/params.json -------------------------------------------------------------------------------- /configs/queries/orgs/issues/total/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/orgs/issues/total/params.json -------------------------------------------------------------------------------- /configs/queries/orgs/issues/total/template.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/orgs/issues/total/template.sql -------------------------------------------------------------------------------- /configs/queries/orgs/issues/trends/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/orgs/issues/trends/params.json -------------------------------------------------------------------------------- /configs/queries/orgs/issues/trends/template.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/orgs/issues/trends/template.sql -------------------------------------------------------------------------------- /configs/queries/orgs/overview/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/orgs/overview/params.json -------------------------------------------------------------------------------- /configs/queries/orgs/overview/template.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/orgs/overview/template.sql -------------------------------------------------------------------------------- /configs/queries/orgs/repos/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/orgs/repos/params.json -------------------------------------------------------------------------------- /configs/queries/orgs/repos/template.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/orgs/repos/template.sql -------------------------------------------------------------------------------- /configs/queries/orgs/reviews/total/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/orgs/reviews/total/params.json -------------------------------------------------------------------------------- /configs/queries/orgs/reviews/total/template.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/orgs/reviews/total/template.sql -------------------------------------------------------------------------------- /configs/queries/orgs/reviews/trends/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/orgs/reviews/trends/params.json -------------------------------------------------------------------------------- /configs/queries/orgs/stars/total/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/orgs/stars/total/params.json -------------------------------------------------------------------------------- /configs/queries/orgs/stars/total/template.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/orgs/stars/total/template.sql -------------------------------------------------------------------------------- /configs/queries/orgs/stars/trends/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/orgs/stars/trends/params.json -------------------------------------------------------------------------------- /configs/queries/orgs/stars/trends/template.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/orgs/stars/trends/template.sql -------------------------------------------------------------------------------- /configs/queries/personal-languages/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/personal-languages/params.json -------------------------------------------------------------------------------- /configs/queries/personal-languages/template.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/personal-languages/template.sql -------------------------------------------------------------------------------- /configs/queries/personal-overview/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/personal-overview/params.json -------------------------------------------------------------------------------- /configs/queries/personal-overview/template.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/personal-overview/template.sql -------------------------------------------------------------------------------- /configs/queries/repos/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/repos/params.json -------------------------------------------------------------------------------- /configs/queries/repos/template.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/repos/template.sql -------------------------------------------------------------------------------- /configs/queries/stats-index-info/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/stats-index-info/params.json -------------------------------------------------------------------------------- /configs/queries/stats-index-info/template.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/stats-index-info/template.sql -------------------------------------------------------------------------------- /configs/queries/stats-index-usage/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/stats-index-usage/params.json -------------------------------------------------------------------------------- /configs/queries/stats-index-usage/template.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/stats-index-usage/template.sql -------------------------------------------------------------------------------- /configs/queries/stats-indexes-info/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/stats-indexes-info/params.json -------------------------------------------------------------------------------- /configs/queries/stats-indexes-info/template.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/stats-indexes-info/template.sql -------------------------------------------------------------------------------- /configs/queries/stats-indexes-usage/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/stats-indexes-usage/params.json -------------------------------------------------------------------------------- /configs/queries/stats-query-records/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/stats-query-records/params.json -------------------------------------------------------------------------------- /configs/queries/stats-table-ddl/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/stats-table-ddl/params.json -------------------------------------------------------------------------------- /configs/queries/stats-table-ddl/template.sql: -------------------------------------------------------------------------------- 1 | SHOW CREATE TABLE github_events; -------------------------------------------------------------------------------- /configs/queries/stats-table-info/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/stats-table-info/params.json -------------------------------------------------------------------------------- /configs/queries/stats-table-info/template.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/stats-table-info/template.sql -------------------------------------------------------------------------------- /configs/queries/trending-repos/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/trending-repos/params.json -------------------------------------------------------------------------------- /configs/queries/trending-repos/template.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/queries/trending-repos/template.sql -------------------------------------------------------------------------------- /configs/search/recommend/orgs/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/search/recommend/orgs/list.json -------------------------------------------------------------------------------- /configs/search/recommend/repos/list-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/search/recommend/repos/list-1.json -------------------------------------------------------------------------------- /configs/search/recommend/repos/list-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/search/recommend/repos/list-2.json -------------------------------------------------------------------------------- /configs/search/recommend/users/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/configs/search/recommend/users/list.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /etl/.browserslistrc: -------------------------------------------------------------------------------- 1 | defaults 2 | -------------------------------------------------------------------------------- /etl/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/.dockerignore -------------------------------------------------------------------------------- /etl/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/.gitattributes -------------------------------------------------------------------------------- /etl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/.gitignore -------------------------------------------------------------------------------- /etl/.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-2.7.0 2 | -------------------------------------------------------------------------------- /etl/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/Dockerfile -------------------------------------------------------------------------------- /etl/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/Gemfile -------------------------------------------------------------------------------- /etl/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/Gemfile.lock -------------------------------------------------------------------------------- /etl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/README.md -------------------------------------------------------------------------------- /etl/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/Rakefile -------------------------------------------------------------------------------- /etl/app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/app/assets/config/manifest.js -------------------------------------------------------------------------------- /etl/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etl/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /etl/app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /etl/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /etl/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etl/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /etl/app/javascript/channels/consumer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/app/javascript/channels/consumer.js -------------------------------------------------------------------------------- /etl/app/javascript/channels/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/app/javascript/channels/index.js -------------------------------------------------------------------------------- /etl/app/javascript/packs/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/app/javascript/packs/application.js -------------------------------------------------------------------------------- /etl/app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/app/jobs/application_job.rb -------------------------------------------------------------------------------- /etl/app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /etl/app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/app/models/application_record.rb -------------------------------------------------------------------------------- /etl/app/models/cn_org.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/app/models/cn_org.rb -------------------------------------------------------------------------------- /etl/app/models/cn_repo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/app/models/cn_repo.rb -------------------------------------------------------------------------------- /etl/app/models/collection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/app/models/collection.rb -------------------------------------------------------------------------------- /etl/app/models/collection_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/app/models/collection_item.rb -------------------------------------------------------------------------------- /etl/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etl/app/models/css_framework_repo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/app/models/css_framework_repo.rb -------------------------------------------------------------------------------- /etl/app/models/db_repo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/app/models/db_repo.rb -------------------------------------------------------------------------------- /etl/app/models/event_log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/app/models/event_log.rb -------------------------------------------------------------------------------- /etl/app/models/github_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/app/models/github_event.rb -------------------------------------------------------------------------------- /etl/app/models/hn_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/app/models/hn_item.rb -------------------------------------------------------------------------------- /etl/app/models/hn_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/app/models/hn_user.rb -------------------------------------------------------------------------------- /etl/app/models/import_log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/app/models/import_log.rb -------------------------------------------------------------------------------- /etl/app/models/js_framework_repo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/app/models/js_framework_repo.rb -------------------------------------------------------------------------------- /etl/app/models/mention_log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/app/models/mention_log.rb -------------------------------------------------------------------------------- /etl/app/models/nocode_repo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/app/models/nocode_repo.rb -------------------------------------------------------------------------------- /etl/app/models/programming_language_repo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/app/models/programming_language_repo.rb -------------------------------------------------------------------------------- /etl/app/models/so_answer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/app/models/so_answer.rb -------------------------------------------------------------------------------- /etl/app/models/so_comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/app/models/so_comment.rb -------------------------------------------------------------------------------- /etl/app/models/so_question.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/app/models/so_question.rb -------------------------------------------------------------------------------- /etl/app/models/so_tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/app/models/so_tag.rb -------------------------------------------------------------------------------- /etl/app/models/so_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/app/models/so_user.rb -------------------------------------------------------------------------------- /etl/app/models/static_site_generator_repo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/app/models/static_site_generator_repo.rb -------------------------------------------------------------------------------- /etl/app/models/trending_repo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/app/models/trending_repo.rb -------------------------------------------------------------------------------- /etl/app/models/web_framework_repo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/app/models/web_framework_repo.rb -------------------------------------------------------------------------------- /etl/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /etl/app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /etl/app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /etl/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/babel.config.js -------------------------------------------------------------------------------- /etl/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/bin/bundle -------------------------------------------------------------------------------- /etl/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/bin/rails -------------------------------------------------------------------------------- /etl/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/bin/rake -------------------------------------------------------------------------------- /etl/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/bin/setup -------------------------------------------------------------------------------- /etl/bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/bin/spring -------------------------------------------------------------------------------- /etl/bin/webpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/bin/webpack -------------------------------------------------------------------------------- /etl/bin/webpack-dev-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/bin/webpack-dev-server -------------------------------------------------------------------------------- /etl/bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/bin/yarn -------------------------------------------------------------------------------- /etl/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config.ru -------------------------------------------------------------------------------- /etl/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/application.rb -------------------------------------------------------------------------------- /etl/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/boot.rb -------------------------------------------------------------------------------- /etl/config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/cable.yml -------------------------------------------------------------------------------- /etl/config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/credentials.yml.enc -------------------------------------------------------------------------------- /etl/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/database.yml -------------------------------------------------------------------------------- /etl/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/environment.rb -------------------------------------------------------------------------------- /etl/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/environments/development.rb -------------------------------------------------------------------------------- /etl/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/environments/production.rb -------------------------------------------------------------------------------- /etl/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/environments/test.rb -------------------------------------------------------------------------------- /etl/config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/initializers/assets.rb -------------------------------------------------------------------------------- /etl/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /etl/config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /etl/config/initializers/fetch_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/initializers/fetch_event.rb -------------------------------------------------------------------------------- /etl/config/initializers/hn_fetch_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/initializers/hn_fetch_item.rb -------------------------------------------------------------------------------- /etl/config/initializers/hn_fetch_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/initializers/hn_fetch_user.rb -------------------------------------------------------------------------------- /etl/config/initializers/hn_realtime.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/initializers/hn_realtime.rb -------------------------------------------------------------------------------- /etl/config/initializers/hn_update.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/initializers/hn_update.rb -------------------------------------------------------------------------------- /etl/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/initializers/inflections.rb -------------------------------------------------------------------------------- /etl/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /etl/config/initializers/permissions_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/initializers/permissions_policy.rb -------------------------------------------------------------------------------- /etl/config/initializers/realtime.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/initializers/realtime.rb -------------------------------------------------------------------------------- /etl/config/initializers/so_fetch_answer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/initializers/so_fetch_answer.rb -------------------------------------------------------------------------------- /etl/config/initializers/so_fetch_comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/initializers/so_fetch_comment.rb -------------------------------------------------------------------------------- /etl/config/initializers/so_fetch_question.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/initializers/so_fetch_question.rb -------------------------------------------------------------------------------- /etl/config/initializers/so_fetch_tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/initializers/so_fetch_tag.rb -------------------------------------------------------------------------------- /etl/config/initializers/so_fetch_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/initializers/so_fetch_user.rb -------------------------------------------------------------------------------- /etl/config/initializers/so_realtime_answer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/initializers/so_realtime_answer.rb -------------------------------------------------------------------------------- /etl/config/initializers/so_realtime_comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/initializers/so_realtime_comment.rb -------------------------------------------------------------------------------- /etl/config/initializers/so_realtime_question.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/initializers/so_realtime_question.rb -------------------------------------------------------------------------------- /etl/config/initializers/so_realtime_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/initializers/so_realtime_user.rb -------------------------------------------------------------------------------- /etl/config/initializers/sql_chart.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/initializers/sql_chart.rb -------------------------------------------------------------------------------- /etl/config/initializers/tidb_dumpling.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/initializers/tidb_dumpling.rb -------------------------------------------------------------------------------- /etl/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /etl/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/locales/en.yml -------------------------------------------------------------------------------- /etl/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/puma.rb -------------------------------------------------------------------------------- /etl/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/routes.rb -------------------------------------------------------------------------------- /etl/config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/spring.rb -------------------------------------------------------------------------------- /etl/config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/storage.yml -------------------------------------------------------------------------------- /etl/config/webpack/development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/webpack/development.js -------------------------------------------------------------------------------- /etl/config/webpack/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/webpack/environment.js -------------------------------------------------------------------------------- /etl/config/webpack/production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/webpack/production.js -------------------------------------------------------------------------------- /etl/config/webpack/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/webpack/test.js -------------------------------------------------------------------------------- /etl/config/webpacker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/config/webpacker.yml -------------------------------------------------------------------------------- /etl/db/migrate/20211205190931_create_cn_orgs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/db/migrate/20211205190931_create_cn_orgs.rb -------------------------------------------------------------------------------- /etl/db/migrate/20211208112931_partition.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/db/migrate/20211208112931_partition.rb -------------------------------------------------------------------------------- /etl/db/migrate/20211214161151_add_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/db/migrate/20211214161151_add_users.rb -------------------------------------------------------------------------------- /etl/db/migrate/20220627072814_add_osdb_repo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/db/migrate/20220627072814_add_osdb_repo.rb -------------------------------------------------------------------------------- /etl/db/migrate/20230107203606_add_so_tables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/db/migrate/20230107203606_add_so_tables.rb -------------------------------------------------------------------------------- /etl/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/db/schema.rb -------------------------------------------------------------------------------- /etl/db/seed.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/db/seed.sql -------------------------------------------------------------------------------- /etl/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/db/seeds.rb -------------------------------------------------------------------------------- /etl/dumpling.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/dumpling.txt -------------------------------------------------------------------------------- /etl/import_from_bigquery.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/import_from_bigquery.sql -------------------------------------------------------------------------------- /etl/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etl/lib/collection_tweet_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/lib/collection_tweet_generator.rb -------------------------------------------------------------------------------- /etl/lib/fill_watch_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/lib/fill_watch_event.rb -------------------------------------------------------------------------------- /etl/lib/importer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/lib/importer.rb -------------------------------------------------------------------------------- /etl/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etl/lib/tasks/auto_annotate_models.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/lib/tasks/auto_annotate_models.rake -------------------------------------------------------------------------------- /etl/lib/tasks/import.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/lib/tasks/import.rake -------------------------------------------------------------------------------- /etl/lib/trending_repo_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/lib/trending_repo_generator.rb -------------------------------------------------------------------------------- /etl/lib/tweet_collection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/lib/tweet_collection.rb -------------------------------------------------------------------------------- /etl/lib/tweet_repo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/lib/tweet_repo.rb -------------------------------------------------------------------------------- /etl/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etl/meta/collections/DEPRECATED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/meta/collections/DEPRECATED.md -------------------------------------------------------------------------------- /etl/meta/orgs/cn_orgs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/meta/orgs/cn_orgs.yml -------------------------------------------------------------------------------- /etl/meta/repos/cn_repos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/meta/repos/cn_repos.yml -------------------------------------------------------------------------------- /etl/meta/repos/css_framework_repos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/meta/repos/css_framework_repos.yml -------------------------------------------------------------------------------- /etl/meta/repos/db_repos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/meta/repos/db_repos.yml -------------------------------------------------------------------------------- /etl/meta/repos/js_framework_repos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/meta/repos/js_framework_repos.yml -------------------------------------------------------------------------------- /etl/meta/repos/nocode_repos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/meta/repos/nocode_repos.yml -------------------------------------------------------------------------------- /etl/meta/repos/programming_language_repos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/meta/repos/programming_language_repos.yml -------------------------------------------------------------------------------- /etl/meta/repos/static_site_generator_repos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/meta/repos/static_site_generator_repos.yml -------------------------------------------------------------------------------- /etl/meta/repos/web_framework_repos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/meta/repos/web_framework_repos.yml -------------------------------------------------------------------------------- /etl/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/package.json -------------------------------------------------------------------------------- /etl/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/postcss.config.js -------------------------------------------------------------------------------- /etl/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/public/404.html -------------------------------------------------------------------------------- /etl/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/public/422.html -------------------------------------------------------------------------------- /etl/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/public/500.html -------------------------------------------------------------------------------- /etl/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etl/public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etl/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etl/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/public/robots.txt -------------------------------------------------------------------------------- /etl/sql/database/2021/prs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/sql/database/2021/prs.sql -------------------------------------------------------------------------------- /etl/sql/database/2021/star_racing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/sql/database/2021/star_racing.sql -------------------------------------------------------------------------------- /etl/sql/database/2021/stars.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/sql/database/2021/stars.sql -------------------------------------------------------------------------------- /etl/sql/database/2021/top_lang.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/sql/database/2021/top_lang.sql -------------------------------------------------------------------------------- /etl/sql/database/2021/top_users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/sql/database/2021/top_users.sql -------------------------------------------------------------------------------- /etl/sql/jsframework/2021/prs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/sql/jsframework/2021/prs.sql -------------------------------------------------------------------------------- /etl/sql/jsframework/2021/repos.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/sql/jsframework/2021/repos.sql -------------------------------------------------------------------------------- /etl/sql/jsframework/2021/score.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/sql/jsframework/2021/score.sql -------------------------------------------------------------------------------- /etl/sql/jsframework/2021/star_racing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/sql/jsframework/2021/star_racing.sql -------------------------------------------------------------------------------- /etl/sql/jsframework/2021/stars.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/sql/jsframework/2021/stars.sql -------------------------------------------------------------------------------- /etl/sql/jsframework/2021/top_lang.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/sql/jsframework/2021/top_lang.sql -------------------------------------------------------------------------------- /etl/sql/jsframework/2021/top_users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/sql/jsframework/2021/top_users.sql -------------------------------------------------------------------------------- /etl/sql/lang/2021/prs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/sql/lang/2021/prs.sql -------------------------------------------------------------------------------- /etl/sql/lang/2021/repos.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/sql/lang/2021/repos.sql -------------------------------------------------------------------------------- /etl/sql/lang/2021/score.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/sql/lang/2021/score.sql -------------------------------------------------------------------------------- /etl/sql/lang/2021/star_racing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/sql/lang/2021/star_racing.sql -------------------------------------------------------------------------------- /etl/sql/lang/2021/star_racing_v2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/sql/lang/2021/star_racing_v2.sql -------------------------------------------------------------------------------- /etl/sql/lang/2021/stars.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/sql/lang/2021/stars.sql -------------------------------------------------------------------------------- /etl/sql/lang/2021/top_lang.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/sql/lang/2021/top_lang.sql -------------------------------------------------------------------------------- /etl/sql/lang/2021/top_users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/sql/lang/2021/top_users.sql -------------------------------------------------------------------------------- /etl/sql/lowcode/2021/prs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/sql/lowcode/2021/prs.sql -------------------------------------------------------------------------------- /etl/sql/lowcode/2021/repos.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/sql/lowcode/2021/repos.sql -------------------------------------------------------------------------------- /etl/sql/lowcode/2021/score.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/sql/lowcode/2021/score.sql -------------------------------------------------------------------------------- /etl/sql/lowcode/2021/star_racing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/sql/lowcode/2021/star_racing.sql -------------------------------------------------------------------------------- /etl/sql/lowcode/2021/stars.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/sql/lowcode/2021/stars.sql -------------------------------------------------------------------------------- /etl/sql/lowcode/2021/top_lang.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/sql/lowcode/2021/top_lang.sql -------------------------------------------------------------------------------- /etl/sql/lowcode/2021/top_users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/sql/lowcode/2021/top_users.sql -------------------------------------------------------------------------------- /etl/sql/webframework/2021/prs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/sql/webframework/2021/prs.sql -------------------------------------------------------------------------------- /etl/sql/webframework/2021/star_racing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/sql/webframework/2021/star_racing.sql -------------------------------------------------------------------------------- /etl/sql/webframework/2021/stars.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/sql/webframework/2021/stars.sql -------------------------------------------------------------------------------- /etl/sql/webframework/2021/top_lang.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/sql/webframework/2021/top_lang.sql -------------------------------------------------------------------------------- /etl/sql/webframework/2021/top_users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/sql/webframework/2021/top_users.sql -------------------------------------------------------------------------------- /etl/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/start.sh -------------------------------------------------------------------------------- /etl/storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etl/test/application_system_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/test/application_system_test_case.rb -------------------------------------------------------------------------------- /etl/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etl/test/fixtures/cn_orgs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/test/fixtures/cn_orgs.yml -------------------------------------------------------------------------------- /etl/test/fixtures/cn_repos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/test/fixtures/cn_repos.yml -------------------------------------------------------------------------------- /etl/test/fixtures/collection_items.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/test/fixtures/collection_items.yml -------------------------------------------------------------------------------- /etl/test/fixtures/collections.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/test/fixtures/collections.yml -------------------------------------------------------------------------------- /etl/test/fixtures/css_framework_repos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/test/fixtures/css_framework_repos.yml -------------------------------------------------------------------------------- /etl/test/fixtures/db_repos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/test/fixtures/db_repos.yml -------------------------------------------------------------------------------- /etl/test/fixtures/event_logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/test/fixtures/event_logs.yml -------------------------------------------------------------------------------- /etl/test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etl/test/fixtures/github_events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/test/fixtures/github_events.yml -------------------------------------------------------------------------------- /etl/test/fixtures/import_logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/test/fixtures/import_logs.yml -------------------------------------------------------------------------------- /etl/test/fixtures/js_framework_repos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/test/fixtures/js_framework_repos.yml -------------------------------------------------------------------------------- /etl/test/fixtures/mention_logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/test/fixtures/mention_logs.yml -------------------------------------------------------------------------------- /etl/test/fixtures/nocode_repos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/test/fixtures/nocode_repos.yml -------------------------------------------------------------------------------- /etl/test/fixtures/web_framework_repos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/test/fixtures/web_framework_repos.yml -------------------------------------------------------------------------------- /etl/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etl/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etl/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etl/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etl/test/models/cn_org_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/test/models/cn_org_test.rb -------------------------------------------------------------------------------- /etl/test/models/cn_repo_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/test/models/cn_repo_test.rb -------------------------------------------------------------------------------- /etl/test/models/collection_item_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/test/models/collection_item_test.rb -------------------------------------------------------------------------------- /etl/test/models/collection_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/test/models/collection_test.rb -------------------------------------------------------------------------------- /etl/test/models/css_framework_repo_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/test/models/css_framework_repo_test.rb -------------------------------------------------------------------------------- /etl/test/models/db_repo_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/test/models/db_repo_test.rb -------------------------------------------------------------------------------- /etl/test/models/event_log_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/test/models/event_log_test.rb -------------------------------------------------------------------------------- /etl/test/models/github_event_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/test/models/github_event_test.rb -------------------------------------------------------------------------------- /etl/test/models/import_log_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/test/models/import_log_test.rb -------------------------------------------------------------------------------- /etl/test/models/js_framework_repo_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/test/models/js_framework_repo_test.rb -------------------------------------------------------------------------------- /etl/test/models/mention_log_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/test/models/mention_log_test.rb -------------------------------------------------------------------------------- /etl/test/models/nocode_repo_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/test/models/nocode_repo_test.rb -------------------------------------------------------------------------------- /etl/test/models/web_framework_repo_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/test/models/web_framework_repo_test.rb -------------------------------------------------------------------------------- /etl/test/system/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etl/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/test/test_helper.rb -------------------------------------------------------------------------------- /etl/tidb-lightning.toml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/tidb-lightning.toml.example -------------------------------------------------------------------------------- /etl/tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etl/tmp/pids/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etl/vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etl/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/etl/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/package.json -------------------------------------------------------------------------------- /packages/api-server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/.gitignore -------------------------------------------------------------------------------- /packages/api-server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/Dockerfile -------------------------------------------------------------------------------- /packages/api-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/README.md -------------------------------------------------------------------------------- /packages/api-server/__tests__/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/__tests__/app.ts -------------------------------------------------------------------------------- /packages/api-server/__tests__/helpers/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/__tests__/helpers/app.ts -------------------------------------------------------------------------------- /packages/api-server/__tests__/helpers/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/__tests__/helpers/db.ts -------------------------------------------------------------------------------- /packages/api-server/__tests__/helpers/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/__tests__/helpers/log.ts -------------------------------------------------------------------------------- /packages/api-server/__tests__/helpers/redis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/__tests__/helpers/redis.ts -------------------------------------------------------------------------------- /packages/api-server/__tests__/plugins/stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/__tests__/plugins/stats.ts -------------------------------------------------------------------------------- /packages/api-server/__tests__/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/__tests__/queries.ts -------------------------------------------------------------------------------- /packages/api-server/__tests__/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/__tests__/tsconfig.json -------------------------------------------------------------------------------- /packages/api-server/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/jest.config.js -------------------------------------------------------------------------------- /packages/api-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/package.json -------------------------------------------------------------------------------- /packages/api-server/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/src/app.ts -------------------------------------------------------------------------------- /packages/api-server/src/cmd/gen-docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/src/cmd/gen-docs.ts -------------------------------------------------------------------------------- /packages/api-server/src/core/cache/Cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/src/core/cache/Cache.ts -------------------------------------------------------------------------------- /packages/api-server/src/core/db/batch-loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/src/core/db/batch-loader.ts -------------------------------------------------------------------------------- /packages/api-server/src/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/src/env.ts -------------------------------------------------------------------------------- /packages/api-server/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/src/index.ts -------------------------------------------------------------------------------- /packages/api-server/src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/src/logger.ts -------------------------------------------------------------------------------- /packages/api-server/src/metrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/src/metrics.ts -------------------------------------------------------------------------------- /packages/api-server/src/plugins/auth/auth0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/src/plugins/auth/auth0.ts -------------------------------------------------------------------------------- /packages/api-server/src/plugins/cors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/src/plugins/cors.ts -------------------------------------------------------------------------------- /packages/api-server/src/plugins/etag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/src/plugins/etag.ts -------------------------------------------------------------------------------- /packages/api-server/src/plugins/metrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/src/plugins/metrics.ts -------------------------------------------------------------------------------- /packages/api-server/src/plugins/rate-limit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/src/plugins/rate-limit.ts -------------------------------------------------------------------------------- /packages/api-server/src/plugins/redis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/src/plugins/redis.ts -------------------------------------------------------------------------------- /packages/api-server/src/plugins/sensible.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/src/plugins/sensible.ts -------------------------------------------------------------------------------- /packages/api-server/src/plugins/swagger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/src/plugins/swagger.ts -------------------------------------------------------------------------------- /packages/api-server/src/plugins/tidb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/src/plugins/tidb.ts -------------------------------------------------------------------------------- /packages/api-server/src/plugins/url-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/src/plugins/url-data.ts -------------------------------------------------------------------------------- /packages/api-server/src/routes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/src/routes/README.md -------------------------------------------------------------------------------- /packages/api-server/src/routes/healthy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/src/routes/healthy/index.ts -------------------------------------------------------------------------------- /packages/api-server/src/routes/q/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/src/routes/q/index.ts -------------------------------------------------------------------------------- /packages/api-server/src/routes/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/src/routes/root.ts -------------------------------------------------------------------------------- /packages/api-server/src/routes/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/src/routes/user/index.ts -------------------------------------------------------------------------------- /packages/api-server/src/routes/v1/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/src/routes/v1/index.ts -------------------------------------------------------------------------------- /packages/api-server/src/utils/compact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/src/utils/compact.ts -------------------------------------------------------------------------------- /packages/api-server/src/utils/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/src/utils/db.ts -------------------------------------------------------------------------------- /packages/api-server/src/utils/endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/src/utils/endpoint.ts -------------------------------------------------------------------------------- /packages/api-server/src/utils/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/src/utils/error.ts -------------------------------------------------------------------------------- /packages/api-server/src/utils/http/forwared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/src/utils/http/forwared.ts -------------------------------------------------------------------------------- /packages/api-server/src/utils/octokit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/src/utils/octokit.ts -------------------------------------------------------------------------------- /packages/api-server/src/utils/sleep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/src/utils/sleep.ts -------------------------------------------------------------------------------- /packages/api-server/src/utils/sqlite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/src/utils/sqlite.ts -------------------------------------------------------------------------------- /packages/api-server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/api-server/tsconfig.json -------------------------------------------------------------------------------- /packages/cli/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/cli/.gitignore -------------------------------------------------------------------------------- /packages/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/cli/README.md -------------------------------------------------------------------------------- /packages/cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/cli/package.json -------------------------------------------------------------------------------- /packages/cli/src/cmd/collection/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/cli/src/cmd/collection/common.ts -------------------------------------------------------------------------------- /packages/cli/src/cmd/collection/reload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/cli/src/cmd/collection/reload.ts -------------------------------------------------------------------------------- /packages/cli/src/cmd/collection/verify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/cli/src/cmd/collection/verify.ts -------------------------------------------------------------------------------- /packages/cli/src/configs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/cli/src/configs/index.ts -------------------------------------------------------------------------------- /packages/cli/src/db/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/cli/src/db/cache.ts -------------------------------------------------------------------------------- /packages/cli/src/db/collections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/cli/src/db/collections.ts -------------------------------------------------------------------------------- /packages/cli/src/db/github_repos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/cli/src/db/github_repos.ts -------------------------------------------------------------------------------- /packages/cli/src/db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/cli/src/db/index.ts -------------------------------------------------------------------------------- /packages/cli/src/db/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/cli/src/db/schema.d.ts -------------------------------------------------------------------------------- /packages/cli/src/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/cli/src/env.ts -------------------------------------------------------------------------------- /packages/cli/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/cli/src/index.ts -------------------------------------------------------------------------------- /packages/cli/src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/cli/src/logger.ts -------------------------------------------------------------------------------- /packages/cli/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/cli/tsconfig.json -------------------------------------------------------------------------------- /packages/job-server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/job-server/.gitignore -------------------------------------------------------------------------------- /packages/job-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/job-server/README.md -------------------------------------------------------------------------------- /packages/job-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/job-server/package.json -------------------------------------------------------------------------------- /packages/job-server/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/job-server/src/app.ts -------------------------------------------------------------------------------- /packages/job-server/src/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/job-server/src/env.ts -------------------------------------------------------------------------------- /packages/job-server/src/lib/bullmq.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/job-server/src/lib/bullmq.ts -------------------------------------------------------------------------------- /packages/job-server/src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/job-server/src/logger.ts -------------------------------------------------------------------------------- /packages/job-server/src/metrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/job-server/src/metrics.ts -------------------------------------------------------------------------------- /packages/job-server/src/plugins/queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/job-server/src/plugins/queue.ts -------------------------------------------------------------------------------- /packages/job-server/src/plugins/redis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/job-server/src/plugins/redis.ts -------------------------------------------------------------------------------- /packages/job-server/src/plugins/tidb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/job-server/src/plugins/tidb.ts -------------------------------------------------------------------------------- /packages/job-server/src/routes/healthy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/job-server/src/routes/healthy/index.ts -------------------------------------------------------------------------------- /packages/job-server/src/routes/metrics/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/job-server/src/routes/metrics/index.ts -------------------------------------------------------------------------------- /packages/job-server/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/job-server/src/types/index.ts -------------------------------------------------------------------------------- /packages/job-server/src/utils/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/job-server/src/utils/db.ts -------------------------------------------------------------------------------- /packages/job-server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/job-server/tsconfig.json -------------------------------------------------------------------------------- /packages/pipeline/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/pipeline/.gitignore -------------------------------------------------------------------------------- /packages/pipeline/README.md: -------------------------------------------------------------------------------- 1 | # OSSInsight Pipeline 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /packages/pipeline/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/pipeline/package.json -------------------------------------------------------------------------------- /packages/pipeline/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/pipeline/src/app.ts -------------------------------------------------------------------------------- /packages/pipeline/src/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/pipeline/src/env.ts -------------------------------------------------------------------------------- /packages/pipeline/src/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/pipeline/src/errors.ts -------------------------------------------------------------------------------- /packages/pipeline/src/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pipeline/src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/pipeline/src/logger.ts -------------------------------------------------------------------------------- /packages/pipeline/src/plugins/tidb/tidb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/pipeline/src/plugins/tidb/tidb.ts -------------------------------------------------------------------------------- /packages/pipeline/src/routes/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/pipeline/src/routes/root.ts -------------------------------------------------------------------------------- /packages/pipeline/src/utils/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/pipeline/src/utils/db.ts -------------------------------------------------------------------------------- /packages/pipeline/src/utils/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/pipeline/src/utils/time.ts -------------------------------------------------------------------------------- /packages/pipeline/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/pipeline/tsconfig.json -------------------------------------------------------------------------------- /packages/prefetch/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/prefetch/.gitignore -------------------------------------------------------------------------------- /packages/prefetch/README.md: -------------------------------------------------------------------------------- 1 | # @ossinsight/prefetch 2 | 3 | -------------------------------------------------------------------------------- /packages/prefetch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/prefetch/package.json -------------------------------------------------------------------------------- /packages/prefetch/src/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/prefetch/src/env.ts -------------------------------------------------------------------------------- /packages/prefetch/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/prefetch/src/index.ts -------------------------------------------------------------------------------- /packages/prefetch/src/job/executor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/prefetch/src/job/executor.ts -------------------------------------------------------------------------------- /packages/prefetch/src/job/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/prefetch/src/job/generator.ts -------------------------------------------------------------------------------- /packages/prefetch/src/job/scheduler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/prefetch/src/job/scheduler.ts -------------------------------------------------------------------------------- /packages/prefetch/src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/prefetch/src/logger.ts -------------------------------------------------------------------------------- /packages/prefetch/src/metrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/prefetch/src/metrics.ts -------------------------------------------------------------------------------- /packages/prefetch/src/utils/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/prefetch/src/utils/db.ts -------------------------------------------------------------------------------- /packages/prefetch/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/prefetch/tsconfig.json -------------------------------------------------------------------------------- /packages/sync-github-data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/sync-github-data/.gitignore -------------------------------------------------------------------------------- /packages/sync-github-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/sync-github-data/README.md -------------------------------------------------------------------------------- /packages/sync-github-data/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/sync-github-data/package.json -------------------------------------------------------------------------------- /packages/sync-github-data/prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/sync-github-data/prisma/schema.prisma -------------------------------------------------------------------------------- /packages/sync-github-data/src/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/sync-github-data/src/env.ts -------------------------------------------------------------------------------- /packages/sync-github-data/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/sync-github-data/src/index.ts -------------------------------------------------------------------------------- /packages/sync-github-data/src/libs/db/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/sync-github-data/src/libs/db/helper.ts -------------------------------------------------------------------------------- /packages/sync-github-data/src/libs/db/new.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/sync-github-data/src/libs/db/new.ts -------------------------------------------------------------------------------- /packages/sync-github-data/src/libs/locator/provider/nominatim/transformer/index.ts: -------------------------------------------------------------------------------- 1 | export * from './nominatim-location.transformer'; 2 | -------------------------------------------------------------------------------- /packages/sync-github-data/src/libs/sleep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/sync-github-data/src/libs/sleep.ts -------------------------------------------------------------------------------- /packages/sync-github-data/src/libs/times.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/sync-github-data/src/libs/times.ts -------------------------------------------------------------------------------- /packages/sync-github-data/src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/sync-github-data/src/logger.ts -------------------------------------------------------------------------------- /packages/sync-github-data/src/typings/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/sync-github-data/src/typings/github.ts -------------------------------------------------------------------------------- /packages/sync-github-data/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/sync-github-data/tsconfig.json -------------------------------------------------------------------------------- /packages/types/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/types/.gitignore -------------------------------------------------------------------------------- /packages/types/README.md: -------------------------------------------------------------------------------- 1 | # Types of OSSInsight 2 | 3 | -------------------------------------------------------------------------------- /packages/types/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/types/package.json -------------------------------------------------------------------------------- /packages/types/schema/query.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/types/schema/query.schema.json -------------------------------------------------------------------------------- /packages/types/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/types/src/index.ts -------------------------------------------------------------------------------- /packages/types/src/query.schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/types/src/query.schema.d.ts -------------------------------------------------------------------------------- /packages/types/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/packages/types/tsconfig.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /web/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/.eslintignore -------------------------------------------------------------------------------- /web/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/.eslintrc.js -------------------------------------------------------------------------------- /web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/.gitignore -------------------------------------------------------------------------------- /web/.nvmrc: -------------------------------------------------------------------------------- 1 | v18.11.0 2 | -------------------------------------------------------------------------------- /web/.preset-analyze: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/.preset-analyze -------------------------------------------------------------------------------- /web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/Dockerfile -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/README.md -------------------------------------------------------------------------------- /web/_blog/authors.yml: -------------------------------------------------------------------------------- 1 | ../blog/authors.yml -------------------------------------------------------------------------------- /web/_blog/why-you-should-choose-tidb.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/_blog/why-you-should-choose-tidb.mdx -------------------------------------------------------------------------------- /web/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/babel.config.js -------------------------------------------------------------------------------- /web/blog/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/blog/authors.yml -------------------------------------------------------------------------------- /web/blog/chat2query-tutorials/import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/blog/chat2query-tutorials/import.png -------------------------------------------------------------------------------- /web/blog/chat2query-tutorials/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/blog/chat2query-tutorials/index.mdx -------------------------------------------------------------------------------- /web/blog/github-data-is-booming/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/blog/github-data-is-booming/index.mdx -------------------------------------------------------------------------------- /web/blog/how-it-works/how-it-works.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/blog/how-it-works/how-it-works.jpg -------------------------------------------------------------------------------- /web/blog/how-it-works/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/blog/how-it-works/index.md -------------------------------------------------------------------------------- /web/blog/how-it-works/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/blog/how-it-works/thumbnail.png -------------------------------------------------------------------------------- /web/blog/reduce-query-latency/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/blog/reduce-query-latency/index.mdx -------------------------------------------------------------------------------- /web/blog/reduce-query-latency/query-result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/blog/reduce-query-latency/query-result.jpg -------------------------------------------------------------------------------- /web/blog/say-thanks-to-github-robots/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/blog/say-thanks-to-github-robots/index.mdx -------------------------------------------------------------------------------- /web/blog/try-it-yourself/create-cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/blog/try-it-yourself/create-cluster.png -------------------------------------------------------------------------------- /web/blog/try-it-yourself/dev-tier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/blog/try-it-yourself/dev-tier.png -------------------------------------------------------------------------------- /web/blog/try-it-yourself/fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/blog/try-it-yourself/fill.png -------------------------------------------------------------------------------- /web/blog/try-it-yourself/import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/blog/try-it-yourself/import.png -------------------------------------------------------------------------------- /web/blog/try-it-yourself/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/blog/try-it-yourself/index.md -------------------------------------------------------------------------------- /web/blog/try-it-yourself/web-shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/blog/try-it-yourself/web-shell.png -------------------------------------------------------------------------------- /web/blog/unsung-heroes-of-open-source/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/blog/unsung-heroes-of-open-source/index.mdx -------------------------------------------------------------------------------- /web/docs/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/docs/about.md -------------------------------------------------------------------------------- /web/docs/api/issue-creators-history.api.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/docs/api/issue-creators-history.api.mdx -------------------------------------------------------------------------------- /web/docs/api/list-collections.api.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/docs/api/list-collections.api.mdx -------------------------------------------------------------------------------- /web/docs/api/list-hot-collections.api.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/docs/api/list-hot-collections.api.mdx -------------------------------------------------------------------------------- /web/docs/api/list-issue-creators.api.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/docs/api/list-issue-creators.api.mdx -------------------------------------------------------------------------------- /web/docs/api/list-pull-request-creators.api.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/docs/api/list-pull-request-creators.api.mdx -------------------------------------------------------------------------------- /web/docs/api/list-repos-of-collection.api.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/docs/api/list-repos-of-collection.api.mdx -------------------------------------------------------------------------------- /web/docs/api/list-trending-repos.api.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/docs/api/list-trending-repos.api.mdx -------------------------------------------------------------------------------- /web/docs/api/ossinsight-public-api.info.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/docs/api/ossinsight-public-api.info.mdx -------------------------------------------------------------------------------- /web/docs/api/showcase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/docs/api/showcase.md -------------------------------------------------------------------------------- /web/docs/api/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/docs/api/sidebar.js -------------------------------------------------------------------------------- /web/docs/api/stargazers-history.api.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/docs/api/stargazers-history.api.mdx -------------------------------------------------------------------------------- /web/docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/docs/faq.md -------------------------------------------------------------------------------- /web/docs/workshop/_category_.yml: -------------------------------------------------------------------------------- 1 | --- 2 | position: 2 3 | label: 'Workshop' 4 | collapsed: true 5 | -------------------------------------------------------------------------------- /web/docs/workshop/ossinsight-lite/_category_.yml: -------------------------------------------------------------------------------- 1 | --- 2 | position: 2 3 | label: '[WIP] OSS Insight Lite' 4 | collapsed: false 5 | -------------------------------------------------------------------------------- /web/docs/workshop/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/docs/workshop/overview.mdx -------------------------------------------------------------------------------- /web/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/docusaurus.config.js -------------------------------------------------------------------------------- /web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/package-lock.json -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/package.json -------------------------------------------------------------------------------- /web/patches/react-share+5.1.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/patches/react-share+5.1.0.patch -------------------------------------------------------------------------------- /web/plugins/.gitignore: -------------------------------------------------------------------------------- 1 | */*.js 2 | */*.d.ts 3 | -------------------------------------------------------------------------------- /web/plugins/alias/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/plugins/alias/index.ts -------------------------------------------------------------------------------- /web/plugins/analyze/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/plugins/analyze/index.ts -------------------------------------------------------------------------------- /web/plugins/define/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/plugins/define/index.ts -------------------------------------------------------------------------------- /web/plugins/dynamic-route/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/plugins/dynamic-route/index.ts -------------------------------------------------------------------------------- /web/plugins/experimental-features/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/plugins/experimental-features/index.ts -------------------------------------------------------------------------------- /web/plugins/gtag/content-group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/plugins/gtag/content-group.ts -------------------------------------------------------------------------------- /web/plugins/gtag/gtag.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/plugins/gtag/gtag.dev.ts -------------------------------------------------------------------------------- /web/plugins/gtag/gtag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/plugins/gtag/gtag.ts -------------------------------------------------------------------------------- /web/plugins/gtag/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/plugins/gtag/index.ts -------------------------------------------------------------------------------- /web/plugins/mui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/plugins/mui/index.ts -------------------------------------------------------------------------------- /web/plugins/mui/serverEntry.js.md5: -------------------------------------------------------------------------------- 1 | 4c83554cd9ca6f120c15b3ff31ecab04 -------------------------------------------------------------------------------- /web/plugins/mui/serverEntry.js.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/plugins/mui/serverEntry.js.patch -------------------------------------------------------------------------------- /web/plugins/prefetch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/plugins/prefetch/index.ts -------------------------------------------------------------------------------- /web/plugins/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/plugins/tsconfig.json -------------------------------------------------------------------------------- /web/prefetch.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/prefetch.mjs -------------------------------------------------------------------------------- /web/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/sidebars.js -------------------------------------------------------------------------------- /web/src/api/_todo_hardcoded.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/api/_todo_hardcoded.ts -------------------------------------------------------------------------------- /web/src/api/axios/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/api/axios/auth.ts -------------------------------------------------------------------------------- /web/src/api/axios/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/api/axios/cache.ts -------------------------------------------------------------------------------- /web/src/api/axios/compact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/api/axios/compact.ts -------------------------------------------------------------------------------- /web/src/api/axios/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/api/axios/type.ts -------------------------------------------------------------------------------- /web/src/api/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/api/client.ts -------------------------------------------------------------------------------- /web/src/api/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/api/core.ts -------------------------------------------------------------------------------- /web/src/api/explorer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/api/explorer.ts -------------------------------------------------------------------------------- /web/src/api/gh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/api/gh.ts -------------------------------------------------------------------------------- /web/src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/api/index.ts -------------------------------------------------------------------------------- /web/src/api/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/api/user.ts -------------------------------------------------------------------------------- /web/src/api/ws.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/api/ws.ts -------------------------------------------------------------------------------- /web/src/client/linkedin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/client/linkedin.js -------------------------------------------------------------------------------- /web/src/client/sentry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/client/sentry.ts -------------------------------------------------------------------------------- /web/src/components/Ads/HowItWorks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/Ads/HowItWorks.tsx -------------------------------------------------------------------------------- /web/src/components/Ads/VideoAds.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/Ads/VideoAds.tsx -------------------------------------------------------------------------------- /web/src/components/Ads/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/Ads/index.tsx -------------------------------------------------------------------------------- /web/src/components/AnalyzeSelector/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/AnalyzeSelector/index.tsx -------------------------------------------------------------------------------- /web/src/components/Anchor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/Anchor.tsx -------------------------------------------------------------------------------- /web/src/components/AuthorizedContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/AuthorizedContent.tsx -------------------------------------------------------------------------------- /web/src/components/BasicCharts/BarChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/BasicCharts/BarChart.tsx -------------------------------------------------------------------------------- /web/src/components/BasicCharts/DataGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/BasicCharts/DataGrid.tsx -------------------------------------------------------------------------------- /web/src/components/BasicCharts/HeatMap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/BasicCharts/HeatMap.tsx -------------------------------------------------------------------------------- /web/src/components/BasicCharts/PieChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/BasicCharts/PieChart.tsx -------------------------------------------------------------------------------- /web/src/components/BasicCharts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/BasicCharts/index.ts -------------------------------------------------------------------------------- /web/src/components/BasicCharts/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/BasicCharts/theme.ts -------------------------------------------------------------------------------- /web/src/components/BasicCharts/withSql.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/BasicCharts/withSql.tsx -------------------------------------------------------------------------------- /web/src/components/BrowserHash/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/BrowserHash/index.tsx -------------------------------------------------------------------------------- /web/src/components/Cards/Cards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/Cards/Cards.tsx -------------------------------------------------------------------------------- /web/src/components/Cards/StandardCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/Cards/StandardCard.tsx -------------------------------------------------------------------------------- /web/src/components/Cards/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/Cards/index.ts -------------------------------------------------------------------------------- /web/src/components/Chart/Chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/Chart/Chart.tsx -------------------------------------------------------------------------------- /web/src/components/Chart/defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/Chart/defaults.ts -------------------------------------------------------------------------------- /web/src/components/Chart/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/Chart/fonts.ts -------------------------------------------------------------------------------- /web/src/components/Chart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/Chart/index.tsx -------------------------------------------------------------------------------- /web/src/components/CommonChart/CommonChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/CommonChart/CommonChart.jsx -------------------------------------------------------------------------------- /web/src/components/CommonChart/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/CommonChart/context.ts -------------------------------------------------------------------------------- /web/src/components/CommonChart/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/CommonChart/index.js -------------------------------------------------------------------------------- /web/src/components/CompareHeader/style.css: -------------------------------------------------------------------------------- 1 | .MuiAutocomplete-popper { 2 | width: unset !important; 3 | } -------------------------------------------------------------------------------- /web/src/components/ContributorsCharts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/ContributorsCharts/index.tsx -------------------------------------------------------------------------------- /web/src/components/CoolList/CoolList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/CoolList/CoolList.tsx -------------------------------------------------------------------------------- /web/src/components/CoolList/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/CoolList/index.ts -------------------------------------------------------------------------------- /web/src/components/DebugDialog/DebugDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/DebugDialog/DebugDialog.tsx -------------------------------------------------------------------------------- /web/src/components/DebugDialog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/DebugDialog/index.ts -------------------------------------------------------------------------------- /web/src/components/Diff/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/Diff/index.tsx -------------------------------------------------------------------------------- /web/src/components/ECharts/ECharts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/ECharts/ECharts.tsx -------------------------------------------------------------------------------- /web/src/components/ECharts/EChartsx.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/ECharts/EChartsx.tsx -------------------------------------------------------------------------------- /web/src/components/ECharts/context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/ECharts/context.tsx -------------------------------------------------------------------------------- /web/src/components/ECharts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/ECharts/index.tsx -------------------------------------------------------------------------------- /web/src/components/ECharts/lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/ECharts/lazy.tsx -------------------------------------------------------------------------------- /web/src/components/Experimental/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/Experimental/index.ts -------------------------------------------------------------------------------- /web/src/components/Footer/icon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/Footer/icon-1.png -------------------------------------------------------------------------------- /web/src/components/Footer/icon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/Footer/icon-2.png -------------------------------------------------------------------------------- /web/src/components/Footer/icon-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/Footer/icon-3.png -------------------------------------------------------------------------------- /web/src/components/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/Footer/index.tsx -------------------------------------------------------------------------------- /web/src/components/GeneralSearch/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/GeneralSearch/index.tsx -------------------------------------------------------------------------------- /web/src/components/GradientDashedBox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/GradientDashedBox/index.tsx -------------------------------------------------------------------------------- /web/src/components/GradientDashedBox/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/GradientDashedBox/styled.ts -------------------------------------------------------------------------------- /web/src/components/GroupSelect/groups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/GroupSelect/groups.ts -------------------------------------------------------------------------------- /web/src/components/GroupSelect/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/GroupSelect/index.tsx -------------------------------------------------------------------------------- /web/src/components/HotCollection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/HotCollection/index.tsx -------------------------------------------------------------------------------- /web/src/components/Image/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/Image/index.tsx -------------------------------------------------------------------------------- /web/src/components/Image/style.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/Image/style.module.css -------------------------------------------------------------------------------- /web/src/components/InViewContainer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/InViewContainer/index.tsx -------------------------------------------------------------------------------- /web/src/components/InViewContext/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/InViewContext/index.ts -------------------------------------------------------------------------------- /web/src/components/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/Loading.tsx -------------------------------------------------------------------------------- /web/src/components/Notifications/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/Notifications/context.ts -------------------------------------------------------------------------------- /web/src/components/Notifications/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/Notifications/index.ts -------------------------------------------------------------------------------- /web/src/components/RealtimeSummary/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/RealtimeSummary/hooks.ts -------------------------------------------------------------------------------- /web/src/components/RealtimeSummary/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/RealtimeSummary/index.tsx -------------------------------------------------------------------------------- /web/src/components/RemoteCharts/hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/RemoteCharts/hook.ts -------------------------------------------------------------------------------- /web/src/components/RemoteCharts/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/RemoteCharts/queries.ts -------------------------------------------------------------------------------- /web/src/components/RippleDot/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/RippleDot/index.tsx -------------------------------------------------------------------------------- /web/src/components/ScrollSpy/ScrollSpy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/ScrollSpy/ScrollSpy.tsx -------------------------------------------------------------------------------- /web/src/components/ScrollSpy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/ScrollSpy/index.ts -------------------------------------------------------------------------------- /web/src/components/Section/Section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/Section/Section.tsx -------------------------------------------------------------------------------- /web/src/components/Section/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/Section/index.tsx -------------------------------------------------------------------------------- /web/src/components/ShareButtons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/ShareButtons/index.tsx -------------------------------------------------------------------------------- /web/src/components/SpecialCharts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/SpecialCharts/index.ts -------------------------------------------------------------------------------- /web/src/components/ThemeAdaptor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/ThemeAdaptor/index.tsx -------------------------------------------------------------------------------- /web/src/components/TiDBCloudLink/context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/TiDBCloudLink/context.tsx -------------------------------------------------------------------------------- /web/src/components/TiDBCloudLink/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/TiDBCloudLink/index.tsx -------------------------------------------------------------------------------- /web/src/components/TileSelect/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/TileSelect/index.tsx -------------------------------------------------------------------------------- /web/src/components/github/Owner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/github/Owner/index.tsx -------------------------------------------------------------------------------- /web/src/components/github/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/github/index.ts -------------------------------------------------------------------------------- /web/src/components/milestone/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/milestone/hooks.ts -------------------------------------------------------------------------------- /web/src/components/milestone/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/milestone/icon.svg -------------------------------------------------------------------------------- /web/src/components/milestone/style.module.css: -------------------------------------------------------------------------------- 1 | .ghIcon { 2 | margin: 0 4px; 3 | } -------------------------------------------------------------------------------- /web/src/components/params/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/params/index.ts -------------------------------------------------------------------------------- /web/src/components/params/useSelectParam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/components/params/useSelectParam.tsx -------------------------------------------------------------------------------- /web/src/context/user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/context/user.tsx -------------------------------------------------------------------------------- /web/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/css/custom.css -------------------------------------------------------------------------------- /web/src/css/data-explore.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/css/data-explore.css -------------------------------------------------------------------------------- /web/src/dynamic-pages/analyze-user/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/dynamic-pages/analyze-user/colors.ts -------------------------------------------------------------------------------- /web/src/dynamic-pages/analyze-user/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/dynamic-pages/analyze-user/index.tsx -------------------------------------------------------------------------------- /web/src/dynamic-pages/analyze/Navigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/dynamic-pages/analyze/Navigator.tsx -------------------------------------------------------------------------------- /web/src/dynamic-pages/analyze/Section.tsx: -------------------------------------------------------------------------------- 1 | export { default } from '../../components/Section'; 2 | -------------------------------------------------------------------------------- /web/src/dynamic-pages/analyze/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/dynamic-pages/analyze/index.tsx -------------------------------------------------------------------------------- /web/src/dynamic-pages/analyze/typography.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/dynamic-pages/analyze/typography.tsx -------------------------------------------------------------------------------- /web/src/dynamic-pages/collections/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/dynamic-pages/collections/context.ts -------------------------------------------------------------------------------- /web/src/dynamic-pages/collections/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/dynamic-pages/collections/index.tsx -------------------------------------------------------------------------------- /web/src/dynamic-pages/collections/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/dynamic-pages/collections/layout.tsx -------------------------------------------------------------------------------- /web/src/dynamic-pages/stats/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/dynamic-pages/stats/index.tsx -------------------------------------------------------------------------------- /web/src/dynamic-pages/stats/tables/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/dynamic-pages/stats/tables/index.tsx -------------------------------------------------------------------------------- /web/src/hooks/force-update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/hooks/force-update.ts -------------------------------------------------------------------------------- /web/src/hooks/mounted.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/hooks/mounted.ts -------------------------------------------------------------------------------- /web/src/hooks/operation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/hooks/operation.ts -------------------------------------------------------------------------------- /web/src/hooks/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/hooks/theme.ts -------------------------------------------------------------------------------- /web/src/hooks/url-search-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/hooks/url-search-state.ts -------------------------------------------------------------------------------- /web/src/hooks/useCookie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/hooks/useCookie.ts -------------------------------------------------------------------------------- /web/src/hooks/visibility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/hooks/visibility.ts -------------------------------------------------------------------------------- /web/src/lib/areacode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/lib/areacode.ts -------------------------------------------------------------------------------- /web/src/lib/code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/lib/code.json -------------------------------------------------------------------------------- /web/src/lib/geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/lib/geo.json -------------------------------------------------------------------------------- /web/src/lib/promise-interval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/lib/promise-interval.ts -------------------------------------------------------------------------------- /web/src/pages/2022/_charts/actions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/2022/_charts/actions.json -------------------------------------------------------------------------------- /web/src/pages/2022/_charts/activity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/2022/_charts/activity.json -------------------------------------------------------------------------------- /web/src/pages/2022/_charts/ai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/2022/_charts/ai.json -------------------------------------------------------------------------------- /web/src/pages/2022/_charts/country-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/2022/_charts/country-data.json -------------------------------------------------------------------------------- /web/src/pages/2022/_charts/database.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/2022/_charts/database.json -------------------------------------------------------------------------------- /web/src/pages/2022/_charts/developers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/2022/_charts/developers.json -------------------------------------------------------------------------------- /web/src/pages/2022/_charts/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/2022/_charts/env.d.ts -------------------------------------------------------------------------------- /web/src/pages/2022/_charts/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/2022/_charts/languages.json -------------------------------------------------------------------------------- /web/src/pages/2022/_charts/low-code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/2022/_charts/low-code.json -------------------------------------------------------------------------------- /web/src/pages/2022/_charts/stargazers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/2022/_charts/stargazers.json -------------------------------------------------------------------------------- /web/src/pages/2022/_charts/web3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/2022/_charts/web3.json -------------------------------------------------------------------------------- /web/src/pages/2022/_components/Insights.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/2022/_components/Insights.tsx -------------------------------------------------------------------------------- /web/src/pages/2022/_components/Keynote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/2022/_components/Keynote.tsx -------------------------------------------------------------------------------- /web/src/pages/2022/_components/Repos.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/2022/_components/Repos.tsx -------------------------------------------------------------------------------- /web/src/pages/2022/_components/Section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/2022/_components/Section.tsx -------------------------------------------------------------------------------- /web/src/pages/2022/_components/Share.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/2022/_components/Share.tsx -------------------------------------------------------------------------------- /web/src/pages/2022/_components/Split.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/2022/_components/Split.tsx -------------------------------------------------------------------------------- /web/src/pages/2022/_components/styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/2022/_components/styled.tsx -------------------------------------------------------------------------------- /web/src/pages/2022/_components/typograph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/2022/_components/typograph.tsx -------------------------------------------------------------------------------- /web/src/pages/2022/_icons/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/2022/_icons/arrow.svg -------------------------------------------------------------------------------- /web/src/pages/2022/_icons/mro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/2022/_icons/mro.png -------------------------------------------------------------------------------- /web/src/pages/2022/_icons/ms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/2022/_icons/ms.svg -------------------------------------------------------------------------------- /web/src/pages/2022/_sections/0-Banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/2022/_sections/0-Banner.tsx -------------------------------------------------------------------------------- /web/src/pages/2022/_sections/2-Languages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/2022/_sections/2-Languages.tsx -------------------------------------------------------------------------------- /web/src/pages/2022/_sections/3-Countries.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/2022/_sections/3-Countries.tsx -------------------------------------------------------------------------------- /web/src/pages/2022/_sections/5-Topics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/2022/_sections/5-Topics.tsx -------------------------------------------------------------------------------- /web/src/pages/2022/_sections/99-Appendix.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/2022/_sections/99-Appendix.tsx -------------------------------------------------------------------------------- /web/src/pages/2022/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/2022/index.tsx -------------------------------------------------------------------------------- /web/src/pages/analyze-company/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/analyze-company/index.tsx -------------------------------------------------------------------------------- /web/src/pages/collections/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/collections/index.tsx -------------------------------------------------------------------------------- /web/src/pages/compare.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/compare.jsx -------------------------------------------------------------------------------- /web/src/pages/experimental.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/experimental.tsx -------------------------------------------------------------------------------- /web/src/pages/explore/_components/Ads.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/explore/_components/Ads.tsx -------------------------------------------------------------------------------- /web/src/pages/explore/_components/AdsSection/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AdsSection'; 2 | -------------------------------------------------------------------------------- /web/src/pages/explore/_components/Faq.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/explore/_components/Faq.tsx -------------------------------------------------------------------------------- /web/src/pages/explore/_components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/explore/_components/Header.tsx -------------------------------------------------------------------------------- /web/src/pages/explore/_components/Info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/explore/_components/Info.tsx -------------------------------------------------------------------------------- /web/src/pages/explore/_components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/explore/_components/Layout.tsx -------------------------------------------------------------------------------- /web/src/pages/explore/_components/Prompt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/explore/_components/Prompt.tsx -------------------------------------------------------------------------------- /web/src/pages/explore/_components/ResultSection/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ResultSection'; 2 | -------------------------------------------------------------------------------- /web/src/pages/explore/_components/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/explore/_components/Search.tsx -------------------------------------------------------------------------------- /web/src/pages/explore/_components/Side.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/explore/_components/Side.tsx -------------------------------------------------------------------------------- /web/src/pages/explore/_components/SqlSection/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './SqlSection'; 2 | -------------------------------------------------------------------------------- /web/src/pages/explore/_components/beta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/explore/_components/beta.svg -------------------------------------------------------------------------------- /web/src/pages/explore/_components/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/explore/_components/context.ts -------------------------------------------------------------------------------- /web/src/pages/explore/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/explore/index.tsx -------------------------------------------------------------------------------- /web/src/pages/home/_components/Section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/home/_components/Section.tsx -------------------------------------------------------------------------------- /web/src/pages/home/_components/StackItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/home/_components/StackItem.tsx -------------------------------------------------------------------------------- /web/src/pages/home/_components/Tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/home/_components/Tag.tsx -------------------------------------------------------------------------------- /web/src/pages/home/_components/events.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/home/_components/events.tsx -------------------------------------------------------------------------------- /web/src/pages/home/_index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/home/_index.tsx -------------------------------------------------------------------------------- /web/src/pages/home/_sections/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/home/_sections/index.tsx -------------------------------------------------------------------------------- /web/src/pages/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './home/_index'; 2 | -------------------------------------------------------------------------------- /web/src/pages/subscriptions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/subscriptions/index.tsx -------------------------------------------------------------------------------- /web/src/pages/try-your-own-dataset/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/pages/try-your-own-dataset/index.tsx -------------------------------------------------------------------------------- /web/src/shim.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/shim.d.ts -------------------------------------------------------------------------------- /web/src/theme/BlogPostItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/theme/BlogPostItem/index.tsx -------------------------------------------------------------------------------- /web/src/theme/CodeBlock/CopyButton/copy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/theme/CodeBlock/CopyButton/copy.ts -------------------------------------------------------------------------------- /web/src/theme/CodeBlock/CopyButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/theme/CodeBlock/CopyButton/index.tsx -------------------------------------------------------------------------------- /web/src/theme/CustomPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/theme/CustomPage/index.tsx -------------------------------------------------------------------------------- /web/src/theme/CustomPage/styles.module.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/src/theme/DocItem/Layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/theme/DocItem/Layout/index.tsx -------------------------------------------------------------------------------- /web/src/theme/DocSidebar/Desktop/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/theme/DocSidebar/Desktop/index.tsx -------------------------------------------------------------------------------- /web/src/theme/DocSidebar/Mobile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/theme/DocSidebar/Mobile/index.tsx -------------------------------------------------------------------------------- /web/src/theme/DocSidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/theme/DocSidebar/index.tsx -------------------------------------------------------------------------------- /web/src/theme/DocSidebarItems/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/theme/DocSidebarItems/index.tsx -------------------------------------------------------------------------------- /web/src/theme/Footer/Layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/theme/Footer/Layout/index.tsx -------------------------------------------------------------------------------- /web/src/theme/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/theme/Footer/index.tsx -------------------------------------------------------------------------------- /web/src/theme/Layout/Provider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/theme/Layout/Provider/index.tsx -------------------------------------------------------------------------------- /web/src/theme/Layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/theme/Layout/index.tsx -------------------------------------------------------------------------------- /web/src/theme/Layout/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/theme/Layout/styles.module.css -------------------------------------------------------------------------------- /web/src/theme/Navbar/Content/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/theme/Navbar/Content/index.tsx -------------------------------------------------------------------------------- /web/src/theme/NavbarItem/ComponentTypes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/theme/NavbarItem/ComponentTypes.tsx -------------------------------------------------------------------------------- /web/src/theme/NavbarItem/LoginItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/theme/NavbarItem/LoginItem.tsx -------------------------------------------------------------------------------- /web/src/theme/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/theme/NotFound.tsx -------------------------------------------------------------------------------- /web/src/theme/Root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/theme/Root.tsx -------------------------------------------------------------------------------- /web/src/utils/dom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/utils/dom.ts -------------------------------------------------------------------------------- /web/src/utils/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/utils/error.ts -------------------------------------------------------------------------------- /web/src/utils/ga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/utils/ga.ts -------------------------------------------------------------------------------- /web/src/utils/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/utils/generate.ts -------------------------------------------------------------------------------- /web/src/utils/gh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/utils/gh.ts -------------------------------------------------------------------------------- /web/src/utils/intl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/utils/intl.ts -------------------------------------------------------------------------------- /web/src/utils/mui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/utils/mui.ts -------------------------------------------------------------------------------- /web/src/utils/promisify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/utils/promisify.ts -------------------------------------------------------------------------------- /web/src/utils/react.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/utils/react.ts -------------------------------------------------------------------------------- /web/src/utils/ref.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/utils/ref.ts -------------------------------------------------------------------------------- /web/src/utils/share.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/utils/share.ts -------------------------------------------------------------------------------- /web/src/utils/value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/src/utils/value.ts -------------------------------------------------------------------------------- /web/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/static/charts/theme/dark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/charts/theme/dark.js -------------------------------------------------------------------------------- /web/static/charts/theme/infographic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/charts/theme/infographic.js -------------------------------------------------------------------------------- /web/static/charts/theme/macarons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/charts/theme/macarons.js -------------------------------------------------------------------------------- /web/static/charts/theme/roma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/charts/theme/roma.js -------------------------------------------------------------------------------- /web/static/charts/theme/shine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/charts/theme/shine.js -------------------------------------------------------------------------------- /web/static/charts/theme/vintage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/charts/theme/vintage.js -------------------------------------------------------------------------------- /web/static/img/2022/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/2022/thumbnail.png -------------------------------------------------------------------------------- /web/static/img/auth0-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/auth0-logo.png -------------------------------------------------------------------------------- /web/static/img/blogs-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/blogs-thumbnail.png -------------------------------------------------------------------------------- /web/static/img/bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/bot.png -------------------------------------------------------------------------------- /web/static/img/data-explorer-showcase.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/data-explorer-showcase.gif -------------------------------------------------------------------------------- /web/static/img/data-explorer-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/data-explorer-thumbnail.png -------------------------------------------------------------------------------- /web/static/img/db/arangodb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/arangodb.png -------------------------------------------------------------------------------- /web/static/img/db/citus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/citus.png -------------------------------------------------------------------------------- /web/static/img/db/clickhouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/clickhouse.png -------------------------------------------------------------------------------- /web/static/img/db/cockroach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/cockroach.png -------------------------------------------------------------------------------- /web/static/img/db/couchdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/couchdb.png -------------------------------------------------------------------------------- /web/static/img/db/crate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/crate.png -------------------------------------------------------------------------------- /web/static/img/db/dgraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/dgraph.png -------------------------------------------------------------------------------- /web/static/img/db/doris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/doris.png -------------------------------------------------------------------------------- /web/static/img/db/druid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/druid.png -------------------------------------------------------------------------------- /web/static/img/db/elasticsearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/elasticsearch.png -------------------------------------------------------------------------------- /web/static/img/db/etcd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/etcd.png -------------------------------------------------------------------------------- /web/static/img/db/flink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/flink.png -------------------------------------------------------------------------------- /web/static/img/db/foundationdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/foundationdb.png -------------------------------------------------------------------------------- /web/static/img/db/greenplum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/greenplum.png -------------------------------------------------------------------------------- /web/static/img/db/hadoop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/hadoop.png -------------------------------------------------------------------------------- /web/static/img/db/hbase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/hbase.png -------------------------------------------------------------------------------- /web/static/img/db/hive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/hive.png -------------------------------------------------------------------------------- /web/static/img/db/ignite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/ignite.png -------------------------------------------------------------------------------- /web/static/img/db/influxdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/influxdb.png -------------------------------------------------------------------------------- /web/static/img/db/ksql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/ksql.png -------------------------------------------------------------------------------- /web/static/img/db/kylin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/kylin.png -------------------------------------------------------------------------------- /web/static/img/db/mariadb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/mariadb.png -------------------------------------------------------------------------------- /web/static/img/db/materialize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/materialize.png -------------------------------------------------------------------------------- /web/static/img/db/mongodb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/mongodb.png -------------------------------------------------------------------------------- /web/static/img/db/nebula.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/nebula.png -------------------------------------------------------------------------------- /web/static/img/db/oceanbase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/oceanbase.png -------------------------------------------------------------------------------- /web/static/img/db/percona-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/percona-server.png -------------------------------------------------------------------------------- /web/static/img/db/pinot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/pinot.png -------------------------------------------------------------------------------- /web/static/img/db/presto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/presto.png -------------------------------------------------------------------------------- /web/static/img/db/prometheus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/prometheus.png -------------------------------------------------------------------------------- /web/static/img/db/questdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/questdb.png -------------------------------------------------------------------------------- /web/static/img/db/redis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/redis.png -------------------------------------------------------------------------------- /web/static/img/db/rocksdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/rocksdb.png -------------------------------------------------------------------------------- /web/static/img/db/scylla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/scylla.png -------------------------------------------------------------------------------- /web/static/img/db/solr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/solr.png -------------------------------------------------------------------------------- /web/static/img/db/spark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/spark.png -------------------------------------------------------------------------------- /web/static/img/db/starrocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/starrocks.png -------------------------------------------------------------------------------- /web/static/img/db/tdengine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/tdengine.png -------------------------------------------------------------------------------- /web/static/img/db/tidb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/tidb.png -------------------------------------------------------------------------------- /web/static/img/db/tikv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/tikv.png -------------------------------------------------------------------------------- /web/static/img/db/timescaledb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/timescaledb.png -------------------------------------------------------------------------------- /web/static/img/db/trino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/trino.png -------------------------------------------------------------------------------- /web/static/img/db/vitess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/vitess.png -------------------------------------------------------------------------------- /web/static/img/db/yugabyte-db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/db/yugabyte-db.png -------------------------------------------------------------------------------- /web/static/img/ellipse-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/ellipse-1.svg -------------------------------------------------------------------------------- /web/static/img/ellipse-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/ellipse-2.svg -------------------------------------------------------------------------------- /web/static/img/explore-logo-layer-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/explore-logo-layer-0.png -------------------------------------------------------------------------------- /web/static/img/explore-logo-layer-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/explore-logo-layer-1.png -------------------------------------------------------------------------------- /web/static/img/explore-logo-layer-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/explore-logo-layer-2.png -------------------------------------------------------------------------------- /web/static/img/favicon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/favicon-1.png -------------------------------------------------------------------------------- /web/static/img/github-bot-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/github-bot-icon.svg -------------------------------------------------------------------------------- /web/static/img/github-tables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/github-tables.png -------------------------------------------------------------------------------- /web/static/img/lang/C++.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/lang/C++.png -------------------------------------------------------------------------------- /web/static/img/lang/C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/lang/C.png -------------------------------------------------------------------------------- /web/static/img/lang/Go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/lang/Go.png -------------------------------------------------------------------------------- /web/static/img/lang/Java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/lang/Java.png -------------------------------------------------------------------------------- /web/static/img/lang/Rust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/lang/Rust.png -------------------------------------------------------------------------------- /web/static/img/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/logo-small.png -------------------------------------------------------------------------------- /web/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/logo.png -------------------------------------------------------------------------------- /web/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/logo.svg -------------------------------------------------------------------------------- /web/static/img/open-source-heroes-ads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/open-source-heroes-ads.png -------------------------------------------------------------------------------- /web/static/img/openai-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/openai-logo.svg -------------------------------------------------------------------------------- /web/static/img/pingcap-logo-w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/pingcap-logo-w.png -------------------------------------------------------------------------------- /web/static/img/screenshots/homepage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/screenshots/homepage.gif -------------------------------------------------------------------------------- /web/static/img/screenshots/homepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/screenshots/homepage.png -------------------------------------------------------------------------------- /web/static/img/screenshots/line-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/screenshots/line-chart.png -------------------------------------------------------------------------------- /web/static/img/screenshots/user_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/screenshots/user_list.png -------------------------------------------------------------------------------- /web/static/img/tidb-cloud-logo-o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/tidb-cloud-logo-o.png -------------------------------------------------------------------------------- /web/static/img/tidb-cloud-logo-t.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/tidb-cloud-logo-t.svg -------------------------------------------------------------------------------- /web/static/img/tidb-cloud-logo-w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/tidb-cloud-logo-w.png -------------------------------------------------------------------------------- /web/static/img/tidb-logo-o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/tidb-logo-o.png -------------------------------------------------------------------------------- /web/static/img/tidb-logo-o.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/tidb-logo-o.svg -------------------------------------------------------------------------------- /web/static/img/tidb-logo-w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/tidb-logo-w.png -------------------------------------------------------------------------------- /web/static/img/tidb-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/tidb-logo.svg -------------------------------------------------------------------------------- /web/static/img/video-ads-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/video-ads-thumbnail.png -------------------------------------------------------------------------------- /web/static/img/workshop-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/workshop-thumbnail.png -------------------------------------------------------------------------------- /web/static/img/workshop/add-secrets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/workshop/add-secrets.png -------------------------------------------------------------------------------- /web/static/img/workshop/enter-desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/workshop/enter-desc.png -------------------------------------------------------------------------------- /web/static/img/workshop/generate-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/workshop/generate-new.png -------------------------------------------------------------------------------- /web/static/img/workshop/run-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/static/img/workshop/run-workflow.png -------------------------------------------------------------------------------- /web/static/tencent5404883709865440848.txt: -------------------------------------------------------------------------------- 1 | 15193326776845136479 2 | -------------------------------------------------------------------------------- /web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/tsconfig.json -------------------------------------------------------------------------------- /web/types/ossinsight.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/web/types/ossinsight.d.ts -------------------------------------------------------------------------------- /workshop.cn.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcap/ossinsight/HEAD/workshop.cn.ipynb --------------------------------------------------------------------------------