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