Run App Engine development server with modules in PyCharm

前端 未结 1 1065
悲哀的现实
悲哀的现实 2020-12-18 12:35

Since the latest release of the Google App Engine Python SDK, it\'s possible to use modules. I have a Python application with a default module and another module. To start t

相关标签:
1条回答
  • 2020-12-18 13:14

    You can go around this for the time being by just creating a new Run Configuration. Chose Python configuration, then fill like this:

    • script: /path/to/your/dev_appserver.py
    • script parameters: dispatch.yaml module1.yaml module2.yaml
    • working directory: /path/to/your/appengine/project

    It works just fine like this for me. The dispatcher is launching properly and I've got all the logs like before in PyCharm.

    0 讨论(0)
提交回复
热议问题