require 'parklife/rails'
require_relative 'config/environment'

Parklife.application.configure do |config|
  # See configuration options here:
  # https://github.com/benpickles/parklife#configuration
end

Parklife.application.routes do
  root crawl: true

  # Add further paths not discovered by crawling from the root - Parklife's
  # Rails integration lets you use the app's route helpers:
  #
  # get hidden_pages_path, crawl: true
  # get feed_path(format: :atom)

  # Services typically allow a custom 404 page.
  # get '/404.html'
end
