25 lines
494 B
Python
25 lines
494 B
Python
import os
|
|
|
|
page = {
|
|
'public' :'page/public' ,
|
|
'error' :'page/error' # Non-template
|
|
}
|
|
# For route
|
|
dirconfig = {
|
|
'/' :
|
|
{
|
|
'tools.sessions.on' : True ,
|
|
'tools.staticdir.root' : os.path.abspath(os.getcwd()) ,
|
|
},
|
|
'/lib' :
|
|
{
|
|
'tools.staticdir.on' : True ,
|
|
'tools.staticdir.dir' : './static/lib' ,
|
|
},
|
|
'/css' :
|
|
{
|
|
'tools.staticdir.on' : True ,
|
|
'tools.staticdir.dir' : './static/css' ,
|
|
},
|
|
}
|