Spaces:
Running
Running
Create config.js
Browse files- data/config.js +40 -0
data/config.js
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_version": "1.0.0",
|
| 3 |
+
"_lastModified": "2026-02-25T00:00:00Z",
|
| 4 |
+
"_modifiedBy": "admin",
|
| 5 |
+
|
| 6 |
+
"site": {
|
| 7 |
+
"name": "GlassGrid",
|
| 8 |
+
"tagline": "Share Your World",
|
| 9 |
+
"logoUrl": "",
|
| 10 |
+
"description": "A mobile-first glass aesthetic social platform",
|
| 11 |
+
"allowSignup": true
|
| 12 |
+
},
|
| 13 |
+
|
| 14 |
+
"activeTheme": "midnight",
|
| 15 |
+
"themeHistory": ["midnight"],
|
| 16 |
+
|
| 17 |
+
"features": {
|
| 18 |
+
"likes": { "enabled": true, "label": "Likes" },
|
| 19 |
+
"comments": { "enabled": true, "label": "Comments" },
|
| 20 |
+
"stories": { "enabled": true, "label": "Stories" },
|
| 21 |
+
"explore": { "enabled": true, "label": "Explore Feed" },
|
| 22 |
+
"saves": { "enabled": true, "label": "Saved Posts" },
|
| 23 |
+
"directMessages": { "enabled": false, "label": "Direct Messages" }
|
| 24 |
+
},
|
| 25 |
+
|
| 26 |
+
"moderation": {
|
| 27 |
+
"requireApproval": false,
|
| 28 |
+
"autoHideFlags": true,
|
| 29 |
+
"flagThreshold": 3
|
| 30 |
+
},
|
| 31 |
+
|
| 32 |
+
"limits": {
|
| 33 |
+
"maxPostsPerDay": 20,
|
| 34 |
+
"maxCaptionLength": 2200,
|
| 35 |
+
"maxCommentLength": 500,
|
| 36 |
+
"maxBioLength": 160
|
| 37 |
+
},
|
| 38 |
+
|
| 39 |
+
"designTokenOverrides": {}
|
| 40 |
+
}
|