-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Slightly better people info workflow, that doesn't break the local de…
…v experience
- Loading branch information
1 parent
c0cb706
commit 90940a8
Showing
8 changed files
with
111 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
.quarto | ||
_site | ||
/.quarto/ | ||
localData | ||
|
||
# semiSecretFiles aren't really secret; they're generated from public GitHub | ||
# data when the website is built. Having a separate directory + only committing | ||
# an example file to the repo is an effort to minimize access to the convenient | ||
# list of detailed ResBaz participants' info. If you find development with | ||
# example data annoying, you can manually download the auto-generated files from | ||
# the published site | ||
data/semiSecretFiles |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,5 +19,5 @@ format: | |
resources: | ||
- styles | ||
- images | ||
- localData | ||
- data | ||
toc: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
{ | ||
"data": { | ||
"organization": { | ||
"teams": { | ||
"nodes": [ | ||
{ | ||
"name": "Hacky Hour", | ||
"members": { | ||
"nodes": [ | ||
{ "id": "cat" }, | ||
{ "id": "mouse" }, | ||
{ "id": "squirrel" } | ||
] | ||
} | ||
}, | ||
{ | ||
"name": "Coffee and Code", | ||
"members": { | ||
"nodes": [{ "id": "dog" }, { "id": "cat" }] | ||
} | ||
} | ||
] | ||
}, | ||
"membersWithRole": { | ||
"nodes": [ | ||
{ | ||
"id": "dog", | ||
"name": "Dog", | ||
"login": "dog", | ||
"bio": "The best dog ever", | ||
"company": "Pets, Inc.", | ||
"avatarUrl": "https://picsum.photos/id/237/200", | ||
"socialAccounts": { "edges": [] } | ||
}, | ||
{ | ||
"id": "cat", | ||
"name": "Cat", | ||
"login": "cat", | ||
"bio": "wut", | ||
"company": "Pets, Inc.", | ||
"avatarUrl": "https://picsum.photos/id/238/200", | ||
"socialAccounts": { "edges": [] } | ||
}, | ||
{ | ||
"id": "mouse", | ||
"name": "Mouse", | ||
"login": "mouse", | ||
"bio": "i heart cheese", | ||
"company": "roDENTS", | ||
"avatarUrl": "https://picsum.photos/id/239/200", | ||
"socialAccounts": { "edges": [] } | ||
}, | ||
{ | ||
"id": "squirrel", | ||
"name": "Squirrel", | ||
"login": "squirrel", | ||
"bio": "you'll never find my acorns", | ||
"company": "roDENTS", | ||
"avatarUrl": "https://picsum.photos/id/240/200", | ||
"socialAccounts": { "edges": [] } | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters