整理服务器 源码
当地的 aws configure --profile corganize-server # ... setup Credenetials # Run the server without a debugger sam local start-api --profile corganize-server 使用调试器进行调试 参见: : TLDR: 通过pip安装ptvsd,并在应用程序的beginnig中添加以下内容 import ptvsd ptvsd . enable_attach ( address = ( "0.0.0.0" , 5890 ), redirect_output
用户评论