Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- text-classification
|
| 5 |
+
tags:
|
| 6 |
+
- database
|
| 7 |
+
- json
|
| 8 |
+
- storage
|
| 9 |
+
size_categories:
|
| 10 |
+
- n<1K
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# 🗄️ Application Database
|
| 14 |
+
|
| 15 |
+
This dataset serves as the backend storage for the Flask application. It contains the JSON structure for user accounts and pinned items.
|
| 16 |
+
|
| 17 |
+
### ⚠️ Warning
|
| 18 |
+
**Do not manually edit** the `db.json` file in this repository while the application is running, as it may cause synchronization conflicts.
|
| 19 |
+
|
| 20 |
+
### Structure
|
| 21 |
+
The data is stored in `db.json` with the following schema:
|
| 22 |
+
```json
|
| 23 |
+
{
|
| 24 |
+
"users": {
|
| 25 |
+
"username": "hashed_password"
|
| 26 |
+
},
|
| 27 |
+
"pins": [
|
| 28 |
+
{
|
| 29 |
+
"id": 123456789,
|
| 30 |
+
"url": "https://...",
|
| 31 |
+
"caption": "...",
|
| 32 |
+
"author": "username"
|
| 33 |
+
}
|
| 34 |
+
]
|
| 35 |
+
}
|