初始提交:人事共享服务中心钉钉登录功能

This commit is contained in:
zsc
2026-05-16 11:15:24 +08:00
commit 7ba21d6413
23 changed files with 1770 additions and 0 deletions

10
run.py Normal file
View 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)