“init”

This commit is contained in:
2025-09-22 10:45:25 +07:00
commit 7fd2f07234
28 changed files with 1221 additions and 0 deletions

14
ecosystem.config.js Normal file
View File

@@ -0,0 +1,14 @@
module.exports = {
apps: [
{
name: "bengkel-api",
script: "./index.js", // Path to your entry file
env: {
NODE_ENV: "development",
},
env_production: {
NODE_ENV: "production",
},
},
],
};