Bläddra i källkod

ecosystem settings

master
root 3 år sedan
förälder
incheckning
92460050e2
2 ändrade filer med 18 tillägg och 0 borttagningar
  1. +15
    -0
      ecosystem.config.js
  2. +3
    -0
      index.js

+ 15
- 0
ecosystem.config.js Visa fil

@@ -0,0 +1,15 @@
module.exports = {
apps: [
{
name: "hotel_strapi",
script: "index.js",
exec_mode: "fork",
env: {
NODE_ENV: "development",
},
env_production: {
NODE_ENV: "production",
},
},
],
};

+ 3
- 0
index.js Visa fil

@@ -0,0 +1,3 @@
const strapi = require('strapi');
strapi(/* {...} */).start();

Laddar…
Avbryt
Spara