mirror of
https://github.com/unilei/aipan-netdisk-search.git
synced 2024-11-25 16:32:42 +08:00
26 lines
530 B
Plaintext
26 lines
530 B
Plaintext
module.exports = {
|
|
apps: [
|
|
{
|
|
name: "aipan-netdisk-search",
|
|
port: "3000",
|
|
exec_mode: "cluster",
|
|
instances: "max",
|
|
script: "./.output/server/index.mjs",
|
|
watch: true,
|
|
env: {
|
|
NODE_ENV: "development",
|
|
},
|
|
env_production: {
|
|
NODE_ENV: "production",
|
|
ADMIN_USER: "",
|
|
ADMIN_PASSWORD: "",
|
|
ADMIN_EMAIL: "",
|
|
JWT_SECRET: "",
|
|
DATABASE_SCHEMA: "",
|
|
DATABASE_URL: "",
|
|
SHADOW_DATABASE_URL: "",
|
|
},
|
|
},
|
|
],
|
|
};
|