Initial commit: PicUpper webcam upload service

This commit is contained in:
sebseb7
2025-12-18 13:45:32 +01:00
commit c1f9c689b7
8 changed files with 1826 additions and 0 deletions

12
ecosystem.config.cjs Normal file
View File

@@ -0,0 +1,12 @@
module.exports = {
apps: [{
name: 'picupper',
script: 'server.js',
env: {
PICUPPER_PORT: 3080
},
watch: false,
instances: 1,
autorestart: true
}]
};