Skip to content

Commit

Permalink
Adding the contributors to the site
Browse files Browse the repository at this point in the history
  • Loading branch information
kiwicopple committed Jan 24, 2020
1 parent dedae3d commit 51a7820
Show file tree
Hide file tree
Showing 7 changed files with 177 additions and 35 deletions.
21 changes: 21 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
REPO_DIR=$(shell pwd)

help:
@echo "\SCRIPTS\n"
@echo "make contributors.users # pull a list of all contributors"
@echo "make contributors.issues # pull a list of all issue creators"


contributors.users:
curl -sS https://api.github.com/repos/supabase/monorepo/contributors \
| jq -r 'map_values({username: .login, avatar_url: .avatar_url}) \
| unique \
| sort_by(.username)' \
> $(REPO_DIR)/web/src/data/contributors/contributors.json

contributors.issues:
curl -sS https://api.github.com/repos/supabase/monorepo/issues \
| jq -r 'map_values({username: .user.login, avatar_url: .user.avatar_url}) \
| unique \
| sort_by(.username)' \
> $(REPO_DIR)/web/src/data/contributors/issues.json
21 changes: 20 additions & 1 deletion web/docs/handbook/contributing.mdx
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
---
id: contributing
title: Contributing
description: Want to help?
---

import ContributorList from '../../src/components/ContributorList'
import Contributors from '../../src/data/contributors/contributors.json'
import IssueCreators from '../../src/data/contributors/issues.json'

## How to contribute

Want to contribute? Why not jump into our github and:

- submit an issue
Expand All @@ -12,6 +19,18 @@ Want to contribute? Why not jump into our github and:
- translate this website
- [vote on a new client library](https://github.com/supabase/monorepo/issues/5) for your favourite language
- [vote on a new connector](https://github.com/supabase/monorepo/issues/4) for a tool that you use
- [vote on a new database](https://github.com/supabase/monorepo/issues/6)
- spread the word if you like what we are doing

Please refrain from putting us on any launch lists (like Product Hunt) until we are ready for public launch :)
Please refrain from putting us on any launch lists (like Product Hunt) until we are ready for public launch :)

## Kudos

### Contributors

<ContributorList list={Contributors} />

### Issue creators

<ContributorList list={IssueCreators} />

4 changes: 3 additions & 1 deletion web/docs/hosting/realtime.mdx
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
---
id: hosting-realtime
title: Self-hosting Supabase Realtime
title: On-premise Realtime
---

> Status: DRAFT
## Pre-requisites

- Postgres 10+
Expand Down
Loading

0 comments on commit 51a7820

Please sign in to comment.