Feature: Show config As a administrator I want to have utility to show config of local pac In order to make less mistakes @wip Scenario: Default Given a file named "config.yaml" with: """ pid_file: 'run/pid' local_storage: 'storage' log_sink: 'log' executable: 'bin/local_pac' """ When I successfully run `local_pac config` Then the stdout should contain: """ pid_file: 'run/pid' local_storage: 'storage' log_sink: 'log' executable: 'bin/local_pac' """