0
0
dbtdata~10 mins

Generating documentation site in dbt - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to generate the dbt documentation site.

dbt
dbt [1] generate
Drag options to blanks, or click blank then click option'
Adocs
Bbuild
Crun
Dtest
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'dbt run' instead of 'dbt docs generate'.
Using 'dbt test' which runs tests, not docs.
2fill in blank
medium

Complete the code to serve the generated dbt documentation site locally.

dbt
dbt docs [1]
Drag options to blanks, or click blank then click option'
Agenerate
Bbuild
Cserve
Drun
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'dbt docs generate' which only generates files.
Using 'dbt run' which runs models, not docs.
3fill in blank
hard

Fix the error in the command to generate documentation site.

dbt
dbt docs [1]
Drag options to blanks, or click blank then click option'
Aserve
Bdocs
Crun
Dgenerate
Attempts:
3 left
💡 Hint
Common Mistakes
Swapping the order of 'docs' and 'generate'.
Using 'dbt run docs' which is invalid.
4fill in blank
hard

Fill both blanks to generate and serve the dbt documentation site.

dbt
dbt [1] [2]
Drag options to blanks, or click blank then click option'
Adocs
Bserve
Cbuild
Drun
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'dbt build serve' which is invalid.
Using 'dbt run docs' which does not serve docs.
5fill in blank
hard

Fill all three blanks to generate docs, serve them, and open in browser automatically.

dbt
dbt [1] [2] --[3]
Drag options to blanks, or click blank then click option'
Adocs
Bserve
Copen
Dbuild
Attempts:
3 left
💡 Hint
Common Mistakes
Omitting '--open' flag.
Using '--open' without 'serve'.