pmrun.config.js 627 B

12345678910111213141516171819
  1. module.exports = {
  2. apps : [
  3. {
  4. name: "szjkjpy",
  5. //脚本入口
  6. script: "./main.py",
  7. //当前python 解释器
  8. interpreter:"F:/developer/conda/envs/fastapi-app-ocr/python.exe",
  9. //程序日志输出位置
  10. out_file: "./public/logs/pm2-log.log",
  11. //错误日志输出位置
  12. error_file: "./public/logs/pm2-error.log",
  13. //是否自动重启
  14. autorestart: false,
  15. //开发者模式 需要对应的.env.dev 其它同理
  16. args: "--env=dev"
  17. }
  18. ]
  19. }