13 lines
218 B
Python
13 lines
218 B
Python
|
|
from bugis.core import BugisApp
|
|
from pathlib import PurePath
|
|
from bugis.server.server import static_resources
|
|
import os
|
|
|
|
root = os.getenv('STATIC_ROOT') or '.'
|
|
app = BugisApp()
|
|
|
|
static_resources(app, '/view', root)
|
|
|
|
|