from DBT in 5 minutes
To run these examples follow the steps below:
dbt parse --profiles-dir .dbt run --profiles-dir .dbt test --profiles-dir .
Some explanations for the other directories created automatically by dbt init...
The seeds directory is for providing side, lookup or reference data using csv files (see here).
The tests directory can be used for defining custom tests to be run by dbt test (see here).
The snapshots directory is used to define snapshot (type 2 SCD objects) to maintain history for stateful objects (see here).
The analyses directory is for generating custom (generally complex) SQL - not transformation - queries (see here).
The macros directory is for defining reusable jinja templating snippets used to simplify your model code (see here).