13 lines
179 B
Python
13 lines
179 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
run_web_app.py
|
|
==============
|
|
|
|
Startup script for the Web app.
|
|
"""
|
|
|
|
from q3stats.scripts.wsgi_app import app
|
|
|
|
if __name__ == '__main__':
|
|
app.run()
|