-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfabfile.py
More file actions
29 lines (24 loc) · 740 Bytes
/
fabfile.py
File metadata and controls
29 lines (24 loc) · 740 Bytes
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
#!/usr/bin/env python
# -*- coding:utf-8 -*-
from management import test, web, docs
from management.settings import update_settings
update_settings({
'assets' : {
'material-icons': {
'source':'./web_src/bower_components/mdi/fonts/',
'target':'./www/fonts/',
'pattern':'.*'
},
'html':{
'source':'./web_src/',
'target':'./www/',
'pattern':'.*\.html'
}
},
'sass_files': [ "./web_src/sass/base.scss",
"./web_src/sass/widgets.scss",
"./web_src/bower_components/mdi/scss/materialdesignicons.scss"],
'css_files':[],
'css_asset_dir':'./www/css'
},'web')
from management import *