Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 Vapor 3、XCode 9.4.1、Swift 4.1 创建一个 webAPI 和一个 Worker 进程(在 Heroku 上),但无法使 SO“Vapor Xcode 项目中的多个目标”中描述的解决方案正常工作。webAPI 工作正常,但如何创建 Worker ?
感谢您的任何建议,
坦率
您应该能够只添加一个工作人员和一个 Web 进程。
web: Run serve --env production --hostname 0.0.0.0 --port $PORT worker: NameOfYourWorkerHere
我很确定 heroku 让您以这种方式启动多个进程,如果不是,您可能需要启动两个实例,一个用于工作人员,一个用于网络。