Skip to content

Commit e12b3b0

Browse files
committed
add color customizations to VSCode settings and expand FAQ with new sections for clarity
1 parent d93af7d commit e12b3b0

File tree

2 files changed

+46
-1
lines changed

2 files changed

+46
-1
lines changed

.vscode/settings.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,10 @@
4242
"editor.suggest.insertMode": "replace",
4343
"editor.defaultFormatter": "biomejs.biome"
4444
},
45-
"editor.tabSize": 2
45+
"editor.tabSize": 2,
46+
"workbench.colorCustomizations": {
47+
"activityBar.background": "#053334",
48+
"titleBar.activeBackground": "#074749",
49+
"titleBar.activeForeground": "#ECFDFD"
50+
}
4651
}

docs/docs/faq.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,46 @@ tags: [faq]
1717

1818
Yes—Hypergraph **is** your data layer. You still host a thin sync server, but your business logic lives entirely on the client.
1919

20+
### Who is Hypergraph for?
21+
22+
Developers building collaborative, consumer-facing apps that require real-time data sync, end-to-end encryption, and public knowledge graph interoperability. Ideal for those who want to focus on client-side logic without managing backend infrastructure.
23+
24+
### What problems does Hypergraph solve?
25+
26+
- Real-time sync of private data across users and devices with E2EE.
27+
- No traditional backend or database required—framework handles storage and sync.
28+
- Publishing and consuming public data in an interoperable knowledge graph.
29+
- Built-in user authentication and access control.
30+
- Enables network effects by reusing existing data across apps.
31+
32+
### What assumptions do we make about developers?
33+
34+
We assume you are comfortable writing React applications in TypeScript and familiar with common UI patterns (e.g., inboxes).
35+
36+
### How can I integrate Hypergraph into an existing application?
37+
38+
You can add Hypergraph as a collaboration and privacy layer to an existing app, enabling real-time sync and end-to-end encryption while keeping your current stack for other functionality.
39+
40+
### Where can I find more examples or support?
41+
42+
Browse our GitHub repository for sample apps and open issues. Join the community through our issue tracker and discussion forums.
43+
44+
### How can I share feedback?
45+
46+
Provide feedback via GitHub issues or our upcoming feedback form linked in the docs.
47+
48+
### How do I get started?
49+
See our Quickstart guide: [🚀 Quickstart](/docs/quickstart).
50+
51+
### What are Spaces?
52+
Spaces are the primary grouping for users and content in Hypergraph; they represent collaboration contexts and topics. Only members of a space can access its private data.
53+
54+
### Where can I find the API reference?
55+
Refer to our API documentation: [📚 API Reference](/docs/api-reference).
56+
57+
### How do I troubleshoot common errors?
58+
Find solutions in our Troubleshooting guide: [🛠 Troubleshooting](/docs/troubleshooting).
59+
2060
---
2161

2262
## Technical

0 commit comments

Comments
 (0)