You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+36-4Lines changed: 36 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,16 @@
1
-
# Graph Framework
1
+
# Hypergraph
2
+
3
+
Hypergraph is a local-first framework for building web3 consumer applications.
4
+
5
+
*Status: Developer Preview* Don't use in production!
6
+
7
+
Build privacy preserving apps with interoperable data using the GRC-20 standard. Read the [Docs](https://docs.hypergraph.thegraph.com/docs/core-concepts), and get started using the Geo Testnet.
8
+
9
+
* TypeSync - A development environment for creating and managing your app schemas
10
+
* Geo Connect - An authentication app for granting your app permissions to user's private spaces
11
+
* GRC-20 TS - A knowledge graph SDK for writing and publishing knowledge in the GRC-20 format
12
+
* Hypergraph - A local-first framework for building web3 consumer applications
13
+
* Hypergraph React - React bindings for Hypergraph
2
14
3
15
## Development
4
16
@@ -8,6 +20,7 @@
8
20
pnpm install
9
21
cd apps/server
10
22
cp .env.example .env
23
+
# add the PRIVY_APP_SECRET & PRIVY_APP_ID to the apps/server/.env file
11
24
pnpm prisma migrate dev
12
25
```
13
26
@@ -30,7 +43,25 @@ cd apps/server
30
43
pnpm prisma migrate dev # this will also generate the Prisma client
31
44
```
32
45
33
-
You can run the next example app with:
46
+
To develop the Typesync CLI, you can run:
47
+
48
+
```sh
49
+
cd apps/typesync
50
+
pnpm dev
51
+
```
52
+
53
+
To develop the Typesync frontend run:
54
+
55
+
```sh
56
+
# open the vite.config.ts and comment out the server object that specifies the port to be 3000
0 commit comments