Skip to content

Commit

Permalink
feat(pm2): add pm2 init option to generate an ecosystem file
Browse files Browse the repository at this point in the history
  • Loading branch information
rmonnier9 committed Feb 9, 2018
1 parent a38fd19 commit 5d56fac
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ $ pm2 resurrect # Restore previously saved processes
$ pm2 unstartup # Disable and remove startup system

$ pm2 update # Save processes, kill PM2 and restore processes
$ pm2 generate # Generate a sample json configuration file
$ pm2 init # Generate a sample js configuration file

# Deployment
$ pm2 deploy app.json prod setup # Setup "prod" remote server
Expand Down
1 change: 0 additions & 1 deletion bin/pm2
Original file line number Diff line number Diff line change
Expand Up @@ -664,7 +664,6 @@ commander.command('logrotate')
//

commander.command('ecosystem [mode]')
.alias('generate')
.alias('init')
.description('generate a process conf file. (mode = null or simple)')
.action(function(mode) {
Expand Down
4 changes: 2 additions & 2 deletions test/bash/cli-actions-1.sh
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ spec "Should list processes successfully"
$pm2 start multi-echo.json
spec "Should start multiple applications"

$pm2 generate echo
spec "Should generate echo sample json"
$pm2 init echo
spec "Should init echo sample json"

$pm2 start echo-pm2.json -f
spec "Should start echo service"
Expand Down

0 comments on commit 5d56fac

Please sign in to comment.