初始提交:人事共享服务中心钉钉登录功能
This commit is contained in:
10
run.py
Normal file
10
run.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from werkzeug.middleware.dispatcher import DispatcherMiddleware
|
||||
from __init__ import app
|
||||
|
||||
application = DispatcherMiddleware(app, {
|
||||
'/requirement-collection': app
|
||||
})
|
||||
|
||||
if __name__ == '__main__':
|
||||
from werkzeug.serving import run_simple
|
||||
run_simple('0.0.0.0', 5001, application, use_reloader=True, use_debugger=True)
|
||||
Reference in New Issue
Block a user