blob: 2248522e95b6973db05d18ba3dab32dcac3c9c94 (
plain)
1
2
3
4
5
6
7
8
9
|
import os
def includeme(config):
here = here = os.path.dirname(__file__)
static = os.path.normpath(
os.path.join(here, '..', '..', 'fixtures', 'static')
)
config.add_static_view('/', static)
|