Add interactive SSH portfolio features

This commit is contained in:
2026-07-27 11:08:12 +09:00
parent eac572dcaf
commit 604080749b
32 changed files with 1356 additions and 31 deletions
+18
View File
@@ -0,0 +1,18 @@
module.exports = {
apps: [{
name: 'ssh-portfolio',
script: './src/server.js',
cwd: __dirname,
interpreter: 'node',
watch: ['src'],
watch_delay: 1000,
ignore_watch: ['node_modules', 'data', 'logs', 'test', '*.sqlite*'],
autorestart: true,
time: true,
out_file: './logs/ssh-portfolio.out.log',
error_file: './logs/ssh-portfolio.error.log',
env: {
NODE_ENV: 'production'
}
}]
};