forked from netconstructor/prontotype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.yml
101 lines (89 loc) · 2.14 KB
/
config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#==================
# index
# -----------------
# Set to an empty string if using mod_rewrite or the nginx equivalent
#==================
index: index.php
#==================
# Timezone
# -----------------
# Timezone used for date functions
#==================
timezone: Europe/London
#==================
# Debugging
# -----------------
# Whether or not to enable debug mode (more error reporting etc)
#==================
debug: false
#==================
# authenticate
# -----------------
# Provide a username and password pair to enable password-protection of the prototype
#==================
authenticate:
username:
password:
ip_whitelist:
#==================
# prefix
# -----------------
# The string to use when prefixing cookie names, classes etc.
#==================
prefix: prontotype-
#==================
# cookie_lifetime
# -----------------
# How long cookies set by prontotype should persist for.
#==================
cookie_lifetime: 604800 # 1 week
#==================
# triggers
# -----------------
# URL segments that trigger specific behaviour
#==================
triggers:
login: _login
logout: _logout
data: _data
shorturl: _p
#==================
# nice_names
# -----------------
# A few short text strings that should be used in auto-generated navigation macros
#==================
nice_names:
index: Overview # what to label the index pages as
home: Home # what to label the home page as
#==================
# data
# -----------------
# Tweak to match the style of different data files.
#==================
data:
csv:
headers: true
delimiter: ','
enclosure: '"'
escape: '\'
id_header: id
#==================
# Assets
# -----------------
# Configuration for LESS/SASS generation
#==================
assets:
auto_generate: false # whether to auto-dump css files on page load. Can slow things down!
#==================
# routing
# -----------------
# Add custom routes here
#==================
routes:
#==================
# Extensions
# -----------------
# list extensions (located in the /extensions dir) to enable in the prototype
#==================
extensions:
# example: ExampleExtension.php