10 lines
229 B
Python
10 lines
229 B
Python
|
# -*- coding: utf-8; mode: python -*-
|
||
|
"""
|
||
|
Static assets
|
||
|
"""
|
||
|
|
||
|
|
||
|
def includeme(config):
|
||
|
config.include('tailbone.static')
|
||
|
config.add_static_view('rattail_tempmon_demo', 'rattail_tempmon_demo.web:static', cache_max_age=3600)
|