module.exports = { apps: [ { name: "tasteby-api", cwd: "./backend", script: "run_api.py", interpreter: ".venv/bin/python", env: { PYTHONPATH: ".", }, }, { name: "tasteby-daemon", cwd: "./backend", script: "run_daemon.py", interpreter: ".venv/bin/python", env: { PYTHONPATH: ".", }, }, { name: "tasteby-web", cwd: "./frontend", script: "npm", args: "run dev", }, ], };