Process manager

    TIP

    In this example we will use PM2 (opens new window).

    PM2 allows you to keep your Strapi project alive and to reload it without downtime.

    You will install PM2 globally

    The basic usage to start an application with PM2 will be to run a command like this pm2 start server.js.

    But here we are facing an issue. In your project you don’t have a .js file to run your Strapi application.

    So first let’s create a server.js file that will let you run the pm2 command.

    Path — ./server.js

    Now you will be able to start your server by running pm2 start server.js.

    Starting with strapi command

    • to start your project in development mode.
    • yarn start to start your app for production.

    You can also start your process manager using the yarn start command.

    pm2 start npm --name app -- run start

    PM2 lets you create a config file to save all information to start your server properly at anytime.

    By running pm2 init it will init an ecosystem.config.js in your application.

    Then replace the content of this file by the following code.

    1. module.exports = {
    2. apps: [
    3. name: 'app',
    4. script: 'npm',
    5. args: 'start',
    6. },
    7. };

    You can see the full documentation of available configuration in the PM2 ecosystem file documentationProcess manager - 图2 (opens new window).