initial commit

This commit is contained in:
root
2026-05-13 14:20:41 +00:00
commit 6e178d2012
6022 changed files with 399872 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
module.exports = {
apps: [{
name: 'uno-bff',
script: './app.js',
instances: 1,
autorestart: true,
watch: false,
max_memory_restart: '500M',
env: {
NODE_ENV: 'production',
PORT: 3001,
S3_ENDPOINT: 'http://127.0.0.1:9000',
S3_ACCESS_KEY: 'UN0-admin',
S3_SECRET_KEY: 'RAygtZHqGN49qKn',
S3_BUCKET: 'uno-click',
S3_IMAGES_INPUT_FOLDER: 'images_input',
S3_PRESIGNED_URL_EXPIRES_IN: 3600,
},
}],
};