├── .gitignore ├── LICENSE ├── README.md ├── pyproject.toml ├── src ├── dbterd │ ├── __init__.py │ ├── core.py │ └── terminal.py └── setup.py └── tests ├── catalog.json ├── example.dbml ├── schema.yml ├── test.dbml └── test_terminal.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellishore/dbt-erdiagram-generator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellishore/dbt-erdiagram-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellishore/dbt-erdiagram-generator/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellishore/dbt-erdiagram-generator/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/dbterd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellishore/dbt-erdiagram-generator/HEAD/src/dbterd/__init__.py -------------------------------------------------------------------------------- /src/dbterd/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellishore/dbt-erdiagram-generator/HEAD/src/dbterd/core.py -------------------------------------------------------------------------------- /src/dbterd/terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellishore/dbt-erdiagram-generator/HEAD/src/dbterd/terminal.py -------------------------------------------------------------------------------- /src/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellishore/dbt-erdiagram-generator/HEAD/src/setup.py -------------------------------------------------------------------------------- /tests/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellishore/dbt-erdiagram-generator/HEAD/tests/catalog.json -------------------------------------------------------------------------------- /tests/example.dbml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellishore/dbt-erdiagram-generator/HEAD/tests/example.dbml -------------------------------------------------------------------------------- /tests/schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellishore/dbt-erdiagram-generator/HEAD/tests/schema.yml -------------------------------------------------------------------------------- /tests/test.dbml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellishore/dbt-erdiagram-generator/HEAD/tests/test.dbml -------------------------------------------------------------------------------- /tests/test_terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellishore/dbt-erdiagram-generator/HEAD/tests/test_terminal.py --------------------------------------------------------------------------------