├── .gitignore ├── Makefile ├── README.md ├── _logo.png ├── lib ├── commandList.js ├── commonTasks.js ├── localTasks.js ├── pm2-meteor.js ├── program.js ├── remoteTasks.js └── settings.js ├── package.json └── src ├── commandList.coffee ├── commonTasks.coffee ├── localTasks.coffee ├── pm2-meteor.coffee ├── remoteTasks.coffee └── settings.coffee /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andruschka/pm2-meteor/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andruschka/pm2-meteor/HEAD/README.md -------------------------------------------------------------------------------- /_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andruschka/pm2-meteor/HEAD/_logo.png -------------------------------------------------------------------------------- /lib/commandList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andruschka/pm2-meteor/HEAD/lib/commandList.js -------------------------------------------------------------------------------- /lib/commonTasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andruschka/pm2-meteor/HEAD/lib/commonTasks.js -------------------------------------------------------------------------------- /lib/localTasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andruschka/pm2-meteor/HEAD/lib/localTasks.js -------------------------------------------------------------------------------- /lib/pm2-meteor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andruschka/pm2-meteor/HEAD/lib/pm2-meteor.js -------------------------------------------------------------------------------- /lib/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andruschka/pm2-meteor/HEAD/lib/program.js -------------------------------------------------------------------------------- /lib/remoteTasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andruschka/pm2-meteor/HEAD/lib/remoteTasks.js -------------------------------------------------------------------------------- /lib/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andruschka/pm2-meteor/HEAD/lib/settings.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andruschka/pm2-meteor/HEAD/package.json -------------------------------------------------------------------------------- /src/commandList.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andruschka/pm2-meteor/HEAD/src/commandList.coffee -------------------------------------------------------------------------------- /src/commonTasks.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andruschka/pm2-meteor/HEAD/src/commonTasks.coffee -------------------------------------------------------------------------------- /src/localTasks.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andruschka/pm2-meteor/HEAD/src/localTasks.coffee -------------------------------------------------------------------------------- /src/pm2-meteor.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andruschka/pm2-meteor/HEAD/src/pm2-meteor.coffee -------------------------------------------------------------------------------- /src/remoteTasks.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andruschka/pm2-meteor/HEAD/src/remoteTasks.coffee -------------------------------------------------------------------------------- /src/settings.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andruschka/pm2-meteor/HEAD/src/settings.coffee --------------------------------------------------------------------------------