初始版本

This commit is contained in:
2026-04-23 16:30:57 +08:00
commit 0d0683a6e6
538 changed files with 113042 additions and 0 deletions

18
ecosystem.config.cjs Normal file
View File

@@ -0,0 +1,18 @@
module.exports = {
apps: [
{
name: 'websopy-5555',
cwd: __dirname,
script: '.output/server/index.mjs',
interpreter: 'node',
node_args: ['--import', './scripts/crypto-hash-polyfill.mjs'],
env: {
NODE_ENV: 'production',
NITRO_HOST: '0.0.0.0',
NITRO_PORT: 5555,
PORT: 5555,
},
},
],
}