-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathParkfile
More file actions
22 lines (18 loc) · 683 Bytes
/
Copy pathParkfile
File metadata and controls
22 lines (18 loc) · 683 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Load your application, this activates the Parklife/Rails integration and gives
# you access to route helpers and models in this file.
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)
get '/.well-known/keybase.txt'
# Services typically allow a custom 404 page.
get '/404.html'
end