Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Accedi
yusmar
/
catania-hotel-web-api
Segui
1
Vota
0
Forka
0
Codice
Problemi
0
Pull Requests
0
Rilasci
0
Wiki
Attività
Sfoglia il codice sorgente
ecosystem settings
master
root
3 anni fa
parent
ead74cff08
commit
92460050e2
2 ha cambiato i file
con
18 aggiunte
e
0 eliminazioni
Visualizzazione separata
Opzioni Diff
Mostra statistiche
Scarica il file Patch
Scarica il file Diff
+15
-0
ecosystem.config.js
+3
-0
index.js
+ 15
- 0
ecosystem.config.js
Vedi 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
Vedi File
@@ -0,0 +1,3 @@
const strapi = require('strapi');
strapi(/* {...} */).start();
Scrivi
Anteprima
Caricamento…
Annulla
Salva