mirror of
https://github.com/koniu/recoll-webui.git
synced 2025-10-03 17:59:50 +02:00
7 lines
225 B
Python
Executable file
7 lines
225 B
Python
Executable file
#!/usr/bin/env python
|
|
import os
|
|
# change to webui's directory and set up
|
|
os.chdir(os.path.dirname(__file__))
|
|
import webui
|
|
application = webui.bottle.default_app()
|
|
# vim: foldmethod=marker:filetype=python:textwidth=80:ts=4:et
|