Metadata-Version: 2.3
Name: debby-cli
Version: 0.0.1
Summary: A dbt project linter
Author: Tom Waterman
Requires-Python: >=3.10
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: python-dotenv (>=1.1.1,<2.0.0)
Description-Content-Type: text/markdown

# debby-core

Private projects for the getdebby.com dbt project linter.

## Setup

Install all groups with poetry.

```
poetry install --all-groups
```

### Testing

```
poetry run pytest
```

### Running the cli

```
poetry run debby
```

### Running the docs site

```
cd docs
poetry run mkdocs serve
```

### Running the web app

Make sure to install Postgres and create a database.

```
brew install postgresql
createdb debby
```

Then run the migrations and start the app

```
cd web
poetry run python manage.py migrate
poetry run python manage.py runserver
```

