Add skeleton

This commit is contained in:
2025-09-17 13:29:29 +07:00
parent 3feb9aa723
commit 6212048aec
10 changed files with 203 additions and 4 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",
},
},
],
};