dlin

(★ 14)

Give coding agents instant dbt lineage — no dbt compile, no Python, no grep.

파일 탐색기

  • .gitignore
  • Cargo.lock
  • Cargo.toml
  • CHANGELOG.md
  • dist-workspace.toml
  • LICENSE
  • pyproject.toml
  • README.md

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

cargo install

설명 보기 ▼

Build and install a Rust binary.

cargo install {{package}}@{{version}}

Install a package from <https://crates.io> (the version is optional - latest by default):

cargo install --git {{repo_url}}

Install a package from the specified Git repository:

cargo install --git {{repo_url}} --{{branch|tag|rev}} {{branch_name|tag|commit_hash}}

Build from the specified branch/tag/commit when installing from a Git repository:

🔍

dbt

설명 보기 ▼

데이터 웨어하우스에서 데이터 변환을 모델링하기 위한 도구.
더 많은 정보: <https://github.com/dbt-labs/dbt-core>.

dbt debug

dbt 프로젝트와 데이터베이스 연결을 디버그:

dbt run

프로젝트의 모든 모델을 실행:

dbt test --select example_model

`example_model`의 모든 테스트를 실행:

🔍

git diff

설명 보기 ▼

Show changes to tracked files.

git diff

Show unstaged changes:

git diff HEAD

Show all uncommitted changes (including staged ones):

git diff --staged

Show only staged (added, but not yet committed) changes:

🔍

pip install

설명 보기 ▼

Install Python packages.

pip install {{package1 package2 ...}}

Install one or more packages:

pip install {{package1 package2 ...}} {{[-U|--upgrade]}}

Upgrade all specified packages to the latest version, installing any that are not already present:

pip install {{package}}=={{version}}

Install a specific version of a package:

🔍

powershell

설명 보기 ▼

이 명령은 `powershell` 대신 `pwsh`를 사용하는 크로스 플랫폼 버전의 PowerShell(이전에는 PowerShell Core로 알려짐)과 혼동될 수 있습니다.
Windows의 원본 `powershell` 명령은 레거시 Windows 버전의 PowerShell(버전 5.1 이하)을 사용하는 데 여전히 사용할 수 있습니다.
더 많은 정보: <https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_pwsh>.

tldr pwsh

최신 크로스 플랫폼 버전의 PowerShell(버전 6 이상)의 명령에 대한 문서 보기:

powershell

대화형 쉘 세션 시작:

tldr powershell {{[-p|--platform]}} windows

레거시 Windows PowerShell(버전 5.1 이하)의 명령에 대한 문서 보기:

# 프로젝트 배지

// repository documentation