Metadata-Version: 2.1
Name: dbt-devnull
Version: 1.1.2
Summary: The devnull adapter plugin for dbt
Home-page: https://github.com/bachng2017/dbt-devnull
Author: bachng
Author-email: bachng@gmail.com
License: Apache
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: dbt-core (>=1.1.0)

# dbt-devnull
A do-nothing dbt adapter plugin.

Following commands should be succesul if configuration is correct withou any database connection
- dbt debug
- dbt docs generate

## Install
```
pip install dbt-devnull
```

## Configuration
A sample profile configuration
```
test:
  target: test
  outputs:
    test:
      type: devnull
      schema: test
      database: test
      username: user
      password: password
      host: localhost
      threads: 1
```

