Include joe@example.com.json demo profile in deployment
Browse files- Add joe@example.com.json to gitignore exceptions for fake demo data
- All user profiles (joker, poet, admin, joe) are now included as demo data
- Updated gitignore comment to clarify all included profiles are fake
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
- .gitignore +2 -1
- data/users/profiles/joe@example.com.json +24 -0
.gitignore
CHANGED
|
@@ -69,7 +69,8 @@ data/users/profiles/*.json
|
|
| 69 |
!data/users/profiles/joker@example.com.json
|
| 70 |
!data/users/profiles/poet@example.com.json
|
| 71 |
!data/users/profiles/admin@example.com.json
|
| 72 |
-
|
|
|
|
| 73 |
|
| 74 |
# Security - additional patterns
|
| 75 |
secrets/
|
|
|
|
| 69 |
!data/users/profiles/joker@example.com.json
|
| 70 |
!data/users/profiles/poet@example.com.json
|
| 71 |
!data/users/profiles/admin@example.com.json
|
| 72 |
+
!data/users/profiles/joe@example.com.json
|
| 73 |
+
# Note: All included profiles are fake demo data
|
| 74 |
|
| 75 |
# Security - additional patterns
|
| 76 |
secrets/
|
data/users/profiles/joe@example.com.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "Joe Demo",
|
| 3 |
+
"phone": "555-0123",
|
| 4 |
+
"bio": "Real estate agent in Maui",
|
| 5 |
+
"location": {
|
| 6 |
+
"city": "Maui",
|
| 7 |
+
"state": "Hawaii",
|
| 8 |
+
"timezone": "Pacific/Honolulu"
|
| 9 |
+
},
|
| 10 |
+
"service_areas": ["Maui County", "Lahaina", "Kaanapali", "Wailea"],
|
| 11 |
+
"preferences": {
|
| 12 |
+
"theme": "system",
|
| 13 |
+
"notifications": true
|
| 14 |
+
},
|
| 15 |
+
"history_files": {
|
| 16 |
+
"posts": "data/users/history/joe@example.com/posts.json",
|
| 17 |
+
"videos": "data/users/history/joe@example.com/videos.json"
|
| 18 |
+
},
|
| 19 |
+
"metadata": {
|
| 20 |
+
"created_at": 1672531200,
|
| 21 |
+
"last_login": 1715990400,
|
| 22 |
+
"account_type": "standard"
|
| 23 |
+
}
|
| 24 |
+
}
|