mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-10-01 15:46:39 +08:00
13 lines
196 B
JavaScript
13 lines
196 B
JavaScript
module.exports = {
|
|
apps : [{
|
|
name : "chat",
|
|
script : "yarn",
|
|
args : "start",
|
|
env : {
|
|
PORT : 23000
|
|
},
|
|
autorestart: true,
|
|
interpreter: '/bin/bash',
|
|
}]
|
|
}
|