This website works better with JavaScript.
Home
Explore
Help
Sign In
yusmar
/
catania-hotel-web-api
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
ecosystem settings
master
root
3 years ago
parent
ead74cff08
commit
92460050e2
2 changed files
with
18 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+15
-0
ecosystem.config.js
+3
-0
index.js
+ 15
- 0
ecosystem.config.js
View File
@@ -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
View File
@@ -0,0 +1,3 @@
const strapi = require('strapi');
strapi(/* {...} */).start();
Write
Preview
Loading…
Cancel
Save