This website works better with JavaScript.
首頁
探索
說明
登入
yusmar
/
catania-hotel-web-api
關註
1
收藏
0
複製
0
程式碼
問題管理
0
合併請求
0
版本發佈
0
Wiki
Activity
瀏覽代碼
ecosystem settings
master
root
3 年之前
父節點
ead74cff08
當前提交
92460050e2
共有
2 個文件被更改
,包括
18 次插入
和
0 次删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+15
-0
ecosystem.config.js
+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();
Write
Preview
Loading…
取消
儲存