pg-boss 12.11.0 → 12.11.1
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 +10 -0
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -154,6 +154,16 @@ pg-boss migrate -c postgres://localhost/myapp --schema myapp_jobs
|
|
|
154
154
|
pg-boss plans create --schema myapp_jobs
|
|
155
155
|
```
|
|
156
156
|
|
|
157
|
+
## Dashboard
|
|
158
|
+
|
|
159
|
+
A web-based dashboard is available for monitoring and managing pg-boss job queues. It provides an overview of queue statistics, job browsing and filtering, job actions (create, cancel, retry, resume, delete), warning history, and multi-database support.
|
|
160
|
+
|
|
161
|
+
```bash
|
|
162
|
+
DATABASE_URL="postgres://user:password@localhost:5432/mydb" npx pg-boss-dashboard
|
|
163
|
+
```
|
|
164
|
+
|
|
165
|
+
See the [dashboard documentation](https://github.com/timgit/pg-boss/blob/master/packages/dashboard/README.md) for full configuration and deployment options.
|
|
166
|
+
|
|
157
167
|
## Requirements
|
|
158
168
|
* Node 22.12 or higher for CommonJS's require(esm)
|
|
159
169
|
* PostgreSQL 13 or higher
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pg-boss",
|
|
3
|
-
"version": "12.11.
|
|
3
|
+
"version": "12.11.1",
|
|
4
4
|
"description": "Queueing jobs in Postgres from Node.js like a boss",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -50,18 +50,18 @@
|
|
|
50
50
|
"type": "git",
|
|
51
51
|
"url": "git+https://github.com/timgit/pg-boss.git"
|
|
52
52
|
},
|
|
53
|
-
"keywords": [
|
|
54
|
-
"postgresql",
|
|
55
|
-
"postgres",
|
|
56
|
-
"queue",
|
|
57
|
-
"job"
|
|
58
|
-
],
|
|
59
53
|
"author": "timgit",
|
|
60
54
|
"license": "MIT",
|
|
61
55
|
"bugs": {
|
|
62
56
|
"url": "https://github.com/timgit/pg-boss/issues"
|
|
63
57
|
},
|
|
64
58
|
"homepage": "https://timgit.github.io/pg-boss",
|
|
59
|
+
"keywords": [
|
|
60
|
+
"postgresql",
|
|
61
|
+
"postgres",
|
|
62
|
+
"queue",
|
|
63
|
+
"job"
|
|
64
|
+
],
|
|
65
65
|
"files": [
|
|
66
66
|
"dist",
|
|
67
67
|
"README.md",
|