-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
29 changed files
with
514 additions
and
280 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
GitHub issues are for bugs / installation problems / feature requests. If you haven't read the [CONTRIBUTING](https://github.com/Unitech/pm2/blob/master/.github/CONTRIBUTING.md) documentation, please start there. | ||
For general support from the community, see [StackOverflow](https://stackoverflow.com/questions/tagged/pm2). | ||
|
||
If you want a more detailed output when trying to reproduce an issue, use pm2 in debug mode: | ||
|
||
``` | ||
DEBUG="pm2:*" pm2 start --no-daemon my-bug.js | ||
``` | ||
|
||
Logs located in `~/.pm2/pm2.log` are always a good place to seek for relevant informations! | ||
|
||
For bugs or installation issues, please provide the following information: | ||
|
||
### Environment info | ||
Operating System: | ||
Pm2 version: | ||
Node version: | ||
Shell: bash/zsh/fish/powershell | ||
|
||
### Steps to reproduce | ||
1. | ||
2. | ||
3. | ||
|
||
### What have you tried? | ||
1. | ||
|
||
### Logs | ||
|
||
``` | ||
head -n 100 ~/.pm2/pm2.log | ||
``` | ||
|
||
(If logs are large, please upload as attachment). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Please always submit pull requests on the development branch. | ||
|
||
| Q | A | ||
| ------------- | --- | ||
| Bug fix? | yes/no | ||
| New feature? | yes/no | ||
| BC breaks? | no | ||
| Deprecations? | no | ||
| Tests pass? | yes | ||
| Fixed tickets | #1234, #5678 | ||
| Doc PR | https://github.com/pm2-hive/pm2-hive.github.io/pulls | ||
|
||
*Please update this template with something that matches your PR* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
language: node_js | ||
branches: | ||
only: | ||
- master | ||
- development | ||
- travis | ||
node_js: | ||
- "0.12" | ||
- "0.10" | ||
- "4" | ||
- "5" | ||
- "6" | ||
os: | ||
- linux | ||
before_install: | ||
- sudo apt-get -qq update | ||
- sudo apt-get install python3 | ||
- sudo apt-get install php5-cli | ||
sudo: required |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
|
||
clean: | ||
find node_modules \( -name "example" -o -name "examples" -o -name "docs" -o -name "jsdoc" -o -name "jsdocs" -o -name "test" -o -name "tests" -o -name "*\.md" -o -name "*\.html" -o -name "*\.eot" -o -name "*\.svg" -o -name "*\.woff" \) -print -exec rm -rf {} \; | ||
find node_modules -type d \( -name "example" -o -name "examples" -o -name "docs" -o -name "jsdoc" -o -name "jsdocs" -o -name "test" -o -name "tests" -o -name "*\.md" -o -name "*\.html" -o -name "*\.eot" -o -name "*\.svg" -o -name "*\.woff" \) -print -exec rm -rf {} \; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
|
||
var pmx = require('pmx'); | ||
|
||
pmx.configureModule({ | ||
human_info : [ | ||
[ 'Description', 'Gridcontrol is now running, tasdkkals dk als dkl askdl\nasd lsdakl kdsald asdsd\nAnd hthis like that and bla blab\nYESY!' ], | ||
[ 'Port', 8000], | ||
[ 'Grid name', 'Sisi la grid'] | ||
] | ||
}); | ||
|
||
setInterval(() => {}, 1000); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"name": "init-module", | ||
"version": "1.0.0", | ||
"description": "", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"apps" : [{ | ||
"script" : "index.js", | ||
"env" : { | ||
"PM2_WAIT_FOR_INIT" : 500 | ||
} | ||
}], | ||
"author": "", | ||
"license": "ISC" | ||
} |
Oops, something went wrong.