ChaGPT - AI Chatbot for customer service automation
Build Next.js for production with command:
npm build
Run the production app:
npm start
Install pm2 package to run nodejs app in the background
sudo npm install -g pm2
Navigate to the Next.js application directory (eg: /var/www/chagpt)
cd /var/www/chagpt
Start the Next.js app using pm2:
sudo -u nodejs pm2 start npm --name "chagpt" -- start
The command above should start the app already. To ensure it starts on boot, run:
sudo -u nodejs pm2 startup
Finally, save current process
sudo -u nodejs pm2 save