You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

17 lines
299 B

  1. const path = require("path");
  2. require("dotenv").config({ path: path.join(__dirname, ".env") });
  3. module.exports = {
  4. apps: [
  5. {
  6. name: "tbg-hotel-web",
  7. script: "server.js",
  8. time: true,
  9. env: {
  10. NODE_ENV: "development",
  11. },
  12. env_production: process.env,
  13. },
  14. ],
  15. };