v0.1.1
This commit is contained in:
parent
b941a1a9f9
commit
6f643e1680
|
|
@ -1,3 +1,7 @@
|
|||
0.1.1
|
||||
**Enhancements**
|
||||
- Terminal dashboard processes amount.
|
||||
|
||||
0.1.0
|
||||
**Enhancements**
|
||||
- Terminal dashboard.
|
||||
|
|
|
|||
11
README.md
11
README.md
|
|
@ -1,11 +1,13 @@
|
|||
pm2-gui [](http://badge.fury.io/js/pm2-gui) [](https://travis-ci.org/Tjatse/pm2-gui)
|
||||
=======
|
||||
|
||||
An elegant web interface for Unitech/PM2.
|
||||
An elegant web & terminal interface for Unitech/PM2.
|
||||
|
||||
> Compatible with PM2 v0.12.7+
|
||||
> If you wanna update to pm2-gui@latest, make sure you've read the [change logs](CHANGELOG.md).
|
||||
|
||||

|
||||
|
||||
# Guide
|
||||
- [Features](#feats)
|
||||
- [Cautions](#cauts)
|
||||
|
|
@ -13,6 +15,7 @@ An elegant web interface for Unitech/PM2.
|
|||
- [CLI](#cli)
|
||||
- [Curses-like dashboard](#dashboard)
|
||||
- [Run Web Interface](#cli_web)
|
||||
- [Daemonic](#daemonic)
|
||||
- [Configs](#cli_confs)
|
||||
- [Authorization](#auth)
|
||||
- [UI/UX](#ui)
|
||||
|
|
@ -76,6 +79,7 @@ $ npm install -g pm2-gui
|
|||
Start the web server, by specific configuration file:
|
||||
$ pm2-gui start --config my-config.ini
|
||||
```
|
||||
|
||||
<a name="dashboard" />
|
||||
## Curses-like dashboard
|
||||
**Only working on unix system**
|
||||
|
|
@ -99,7 +103,8 @@ $ npm install -g pm2-gui
|
|||
--no-debug hide stdout / stderr information
|
||||
```
|
||||
|
||||
**Daemonic:**
|
||||
<a name="daemonic" />
|
||||
## Daemonic
|
||||
```bash
|
||||
# start
|
||||
$ nohup pm2-gui start > /dev/null 2>&1 & echo $! > /path/to/pm2-gui.pid
|
||||
|
|
@ -198,7 +203,7 @@ Some screenshots:
|
|||
|
||||
Curses-like dashboard:
|
||||
|
||||

|
||||

|
||||
|
||||
Backend (without `--no-debug` option):
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "pm2-gui",
|
||||
"version": "0.1.0",
|
||||
"description": "An elegant web interface for Unitech/PM2.",
|
||||
"version": "0.1.1",
|
||||
"description": "An elegant web & terminal interface for Unitech/PM2.",
|
||||
"scripts": {
|
||||
"test": "NODE_ENV=test bash test/index.sh"
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in New Issue