Complete the code to start the dbt documentation server.
dbt [1] serveThe command dbt docs serve starts a local server to view your dbt project's documentation.
Complete the code to generate the documentation site files before serving.
dbt docs [1]You must run dbt docs generate to create the documentation files before serving them.
Fix the error in the command to serve dbt docs on a specific port.
dbt docs serve --[1] 8085
The --port option specifies the port number for the docs server.
Fill both blanks to generate and serve dbt docs in one command.
dbt docs [1] && dbt docs [2]
Generate the docs with dbt docs generate, then serve them with dbt docs serve.
Fill all three blanks to generate docs, serve on port 8080, and specify host 0.0.0.0.
dbt docs [1] && dbt docs serve --[2] 8080 --[3] 0.0.0.0
Use dbt docs generate to generate docs, then serve with --port and --host options.
