Skip to content
This repository has been archived by the owner on Oct 2, 2020. It is now read-only.

Migrate to The Graph #200

Merged
merged 26 commits into from
Jul 31, 2020
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
7211896
Remove worker and taskmaster
onbjerg Jul 23, 2020
8fefea0
Add basic API based on The Graph
onbjerg Jul 23, 2020
e94ed39
Correctly format return value of profiles DataLoader
onbjerg Jul 23, 2020
b1e9fd4
Document `GRAPH_ARAGON_CONNECT`
onbjerg Jul 24, 2020
06eb3b3
Fix lint
onbjerg Jul 24, 2020
e311c13
Remove worker and taskmaster workflows
onbjerg Jul 24, 2020
96b9b47
Support `PORT` environment variable
onbjerg Jul 24, 2020
696cb76
Add `updateProfile` mutation
onbjerg Jul 24, 2020
ac40cd7
Add missing kernel ABI
onbjerg Jul 24, 2020
a8c24f1
Fix typos
onbjerg Jul 24, 2020
4051197
Add org factories to the schema
onbjerg Jul 24, 2020
05f977a
Fix profile queries
onbjerg Jul 24, 2020
fd22f32
Make profiles wiki-style by default
onbjerg Jul 28, 2020
40cbe44
Remove app mining scripts
onbjerg Jul 28, 2020
74fef64
Query new GraphQL schema in orgs overview
onbjerg Jul 28, 2020
4b895c2
Clean up latest changes to org list overview
onbjerg Jul 28, 2020
b1fc078
Adhere to code style rules in API
onbjerg Jul 28, 2020
cc1d5d6
Add creation time to orgs list overview
onbjerg Jul 29, 2020
fa68ad3
Add YouTube and Medium to known platforms for links
onbjerg Jul 29, 2020
e73dbe4
Fix sort
onbjerg Jul 30, 2020
4c03223
Add org checkmark
onbjerg Jul 30, 2020
184a561
Update apps list to query new API
onbjerg Jul 30, 2020
90dfe2c
Connect profiles to new API
onbjerg Jul 31, 2020
0469c3d
Multi-network support
onbjerg Jul 31, 2020
a1593d4
Fix lint
onbjerg Jul 31, 2020
5c29784
Update documentation
onbjerg Jul 31, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update documentation
  • Loading branch information
onbjerg committed Jul 31, 2020
commit 5c2978476c0a2356059304c9d68e1659a1251c9e
20 changes: 11 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -24,15 +24,17 @@ A GraphQL API. Interactive documentation for the API is available if you visit t

#### Configuration

| Environment Variable | Description | Default |
| ---------------------- | ----------------------------------------------------------- | --------------------------- |
| **Database** | | |
| `MONGODB_URI` | **Required**. The URI of the MongoDB instance to connect to | `mongodb://localhost:27017` |
| `MONGODB_NAME` | The name of the MongoDB database to connect to | `daolist` |
| `GRAPH_ARAGON_CONNECT` | The full URL to the Aragon Connect subgraph | None (required) |
| **Misc** | | |
| `PORT` | The port to listen for requests on | `3000` |
| `LOG_LEVEL` | The log level | `info` |
| Environment Variable | Description | Default |
| ---------------------- | ------------------------------------------------------------ | --------------------------- |
| **Database** | | |
| `MONGODB_URI` | **Required**. The URI of the MongoDB instance to connect to | `mongodb://localhost:27017` |
| `MONGODB_NAME` | **Required**. The name of the MongoDB database to connect to | `daolist` |
| `GRAPH_ARAGON_CONNECT` | **Required**. The full URL to the Aragon Connect subgraph | None (required) |
| `NETWORK_ID` | **Required**. The network ID of the Ethereum node. | |
| `ETH_NODE` | **Required**. The Ethereum node to connect to. | |
| **Misc** | | |
| `PORT` | The port to listen for requests on | `4000` |
| `LOG_LEVEL` | The log level | `info` |

### [website](/website)