oopsdb 1.3.0 → 1.5.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 +14 -0
- package/dist/index.js +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,6 +4,10 @@
|
|
|
4
4
|
|
|
5
5
|
Auto-backup and 1-click restore for developers using Claude Code, Cursor, Windsurf, and other AI coding agents.
|
|
6
6
|
|
|
7
|
+
<p align="center">
|
|
8
|
+
<img src="website/assets/oopsdb_demo.gif" alt="OopsDB Demo Screen Recording" style="max-width: 100%; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.1)">
|
|
9
|
+
</p>
|
|
10
|
+
|
|
7
11
|
---
|
|
8
12
|
|
|
9
13
|
## The Problem
|
|
@@ -78,6 +82,16 @@ oopsdb clean Remove all OopsDB data from project
|
|
|
78
82
|
2. `oopsdb watch` runs the native dump tool (`pg_dump`, `mysqldump`, or `sqlite3 .backup`) at your chosen interval. Output is streamed through AES-256-CBC encryption directly to disk — memory usage stays flat even for large databases.
|
|
79
83
|
3. `oopsdb restore` shows your snapshots with timestamps and sizes. Pick one, confirm, and your database is rolled back. It takes a safety snapshot first, so you can always undo the undo.
|
|
80
84
|
|
|
85
|
+
## Quick Demo
|
|
86
|
+
|
|
87
|
+
Want to see OopsDB in action without touching your real database? We built a safe demo playground just for you.
|
|
88
|
+
|
|
89
|
+
1. Clone or download this repository.
|
|
90
|
+
2. Navigate to the `demo/` folder: `cd demo`
|
|
91
|
+
3. Generate the dummy database: `sqlite3 test.db < seed.sql`
|
|
92
|
+
4. Initialize OopsDB (it won't affect your global config because `.oopsdb` is gitignored here): `oopsdb init`
|
|
93
|
+
5. Try running `oopsdb shield` and firing a `DROP TABLE users` against it to watch the interceptor catch the query!
|
|
94
|
+
|
|
81
95
|
## Requirements
|
|
82
96
|
|
|
83
97
|
Your system needs the native database CLI tools:
|
package/dist/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oopsdb",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"description": "Don't let AI nuke your database. Auto-backup and 1-click restore for developers using Claude Code, Cursor, Windsurf, and other AI coding agents.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|