Complete the code to start the Airflow webserver.
airflow [1]The airflow standalone command starts Airflow with all components for quick testing.
Complete the code to initialize the Airflow database.
airflow db [1]The airflow db init command sets up the Airflow metadata database.
Fix the error in the command to start the Airflow scheduler.
airflow [1]The correct command is airflow scheduler to start the scheduler process.
Fill both blanks to configure Airflow to use a PostgreSQL database and enable the scheduler.
[core] executor = [1] sql_alchemy_conn = [2]
Using LocalExecutor allows parallel task execution, and the PostgreSQL connection string configures the database.
Fill all three blanks to set up Airflow's webserver port, enable logging, and set the DAGs folder.
[webserver] web_server_port = [1] [logging] logging_level = [2] [core] dags_folder = [3]
Port 8080 is default for Airflow webserver, INFO is a common logging level, and the DAGs folder path points to where DAG files are stored.