stackdeck 0.3.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +18 -7
- package/index.html +643 -134
- package/package.json +30 -7
- package/server.js +19 -1
package/README.md
CHANGED
|
@@ -20,14 +20,20 @@ neither has.*
|
|
|
20
20
|
## Quick start
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
|
-
|
|
24
|
-
|
|
23
|
+
npx stackdeck # starts the daemon, opens http://localhost:8899
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
Or install it onto your PATH:
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
npm install -g stackdeck # then: stackdeck | stackdeck status | stackdeck logs api
|
|
25
30
|
```
|
|
26
31
|
|
|
27
|
-
Or
|
|
32
|
+
Or run from source:
|
|
28
33
|
|
|
29
34
|
```bash
|
|
30
|
-
|
|
35
|
+
git clone https://github.com/beingmechon/stackdeck && cd stackdeck
|
|
36
|
+
node bin/stackdeck.js
|
|
31
37
|
```
|
|
32
38
|
|
|
33
39
|
## What it does
|
|
@@ -45,9 +51,13 @@ npm link # then: stackdeck | stackdeck status | stackdeck lo
|
|
|
45
51
|
- **Git-aware** — a branch dropdown per service; picking a branch runs
|
|
46
52
|
`git checkout` before start, refused while the tree is dirty. Dirty repos
|
|
47
53
|
are badged.
|
|
48
|
-
- **Organize the board** — drag rows between your own sections
|
|
49
|
-
*start all* / *stop all*, collapse/expand,
|
|
50
|
-
the project list.
|
|
54
|
+
- **Organize the board** — drag rows between your own sections (or move by
|
|
55
|
+
keyboard), per-section *start all* / *stop all*, collapse/expand,
|
|
56
|
+
hide/unhide anything, categorize the project list.
|
|
57
|
+
- **Themes** — three built-ins (calm, playful, austere) plus a custom theme
|
|
58
|
+
editor in settings: base hue, warmth, a dark↔light slider, accent color,
|
|
59
|
+
corner radius, sans/mono. Every token is derived, so a full light theme is
|
|
60
|
+
one slider away. Saved to config, or per-tab via `?theme=`.
|
|
51
61
|
- **Stacks that start in order** — give a service `dependsOn` and it starts
|
|
52
62
|
after its dependencies are *ready* (a log-line regex via `readyWhen`, an
|
|
53
63
|
HTTP check, or its port opening). Section **start all** is
|
|
@@ -97,6 +107,7 @@ editable from the UI; the interesting ones:
|
|
|
97
107
|
"categoryOrder": ["Products", "Tools"], // display order of project categories
|
|
98
108
|
"projectCategories": { "my-repo": "Products" },
|
|
99
109
|
"groups": ["Stack A"], // your service sections
|
|
110
|
+
"theme": "playful", // or austere / custom (editor in settings)
|
|
100
111
|
"services": [
|
|
101
112
|
{
|
|
102
113
|
"name": "api",
|