-
Notifications
You must be signed in to change notification settings - Fork 5
/
config.yml
44 lines (37 loc) · 1.02 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
appname: "MyApp"
charset: "UTF-8"
version: "0.0.1"
# we specify a layout even if our layout doesn't contain a content var
# we are doing single page app, so we only send the layout and angular will take care
# of changing views
#layout: "main"
# template engine
# use TT, it's just better
template: template_toolkit
engines:
template_toolkit:
start_tag: '[%'
stop_tag: '%]'
serializer: "JSON"
assets:
js:
build-folder: "public/app/build"
build-file: "app.js"
build-file-min: "app.min.js"
files:
- "public/app/app.js"
- "public/app/directives/MyDirective.js"
- "public/app/services/MyService.js"
- "public/app/filters/MyFilter.js"
- "public/app/controllers/MyController.js"
css:
build-folder: "public/css/build"
build-file: "styles.css"
build-file-min: "styles.min.css"
files:
- "public/css/styles.css"
# we run our dancer app using starman. we use a http server as a proxy so we left
# this below to use
#plack_middlewares:
# -
# - ReverseProxy