9 lines
169 B
Python
9 lines
169 B
Python
"""Run a development application."""
|
|
|
|
from xppl.socketio import socketio
|
|
from xppl.app import create_app
|
|
|
|
app = create_app('xppl.config.Development')
|
|
|
|
socketio.run(app)
|