- correct startup of applications using gevent - introduce startup scripts (eveai_app) - caching manager for all configurations
9 lines
151 B
Python
9 lines
151 B
Python
from gevent import monkey
|
|
monkey.patch_all()
|
|
|
|
from eveai_chat import create_app
|
|
|
|
app = create_app()
|
|
|
|
if __name__ == '__main__':
|
|
app.run(debug=True) |