소스 검색

ecosystem settings

master
root 3 년 전
부모
커밋
92460050e2
2개의 변경된 파일18개의 추가작업 그리고 0개의 파일을 삭제
  1. +15
    -0
      ecosystem.config.js
  2. +3
    -0
      index.js

+ 15
- 0
ecosystem.config.js 파일 보기

@@ -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 파일 보기

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

불러오는 중...
취소
저장