17 lines
304 B
Python
17 lines
304 B
Python
"""
|
|
Main application entry point
|
|
"""
|
|
from app import create_app
|
|
from app.config import Config
|
|
|
|
app = create_app(Config())
|
|
|
|
if __name__ == '__main__':
|
|
config = Config()
|
|
app.run(
|
|
host=config.server_host,
|
|
port=config.server_port,
|
|
debug=(config.server_mode == 'debug')
|
|
)
|
|
|