# File lib/autumn/tool/bin.rb, line 191
        def start # {{{
          start_options.parse!(ARGV)
          al_root
          
          # Find the name of this app
          puts "starting autumn"
          if @daemonize
            require "daemons"
            Daemons.run_proc(Pathname.new(AL_ROOT).basename, :ARGV => ["start"], :dir_mode => :normal, :dir => "tmp", :multiple => false) do
              start_autumn
            end
            puts "Autumn started in the background"
          else
            start_autumn
          end
        end