chore: initial transfer commit

This commit is contained in:
Severian
2025-01-19 21:47:26 +08:00
commit 01edd57296
31 changed files with 4176 additions and 0 deletions

12
sucker.config.js Normal file
View File

@@ -0,0 +1,12 @@
/**
* Get compatible PM2 app config object with automatic support for .nvmrc,
* port allocation, and debug mode.
*/
module.exports = {
apps: (function () {
let nodeapp = require("/usr/local/hestia/plugins/nodeapp/nodeapp.js")(
__filename
);
return [nodeapp];
})(),
};