https://github.com/centerforopenscience/share-directory
The people building and using SHARE
https://github.com/centerforopenscience/share-directory
Last synced: 10 months ago
JSON representation
The people building and using SHARE
- Host: GitHub
- URL: https://github.com/centerforopenscience/share-directory
- Owner: CenterForOpenScience
- License: apache-2.0
- Created: 2016-07-09T14:49:19.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-07-20T21:00:47.000Z (over 9 years ago)
- Last Synced: 2025-03-21T22:39:15.982Z (10 months ago)
- Language: Mako
- Homepage: https://centerforopenscience.github.io/share-directory/
- Size: 58.6 KB
- Stars: 1
- Watchers: 2
- Forks: 36
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SHARE Directory
[](https://travis-ci.org/CenterForOpenScience/share-directory)
This repo has two purposes:
- Provide a directory listing of the people building and using SHARE
- Serve as a learning tool for learning Git and GitHub
## Add yourself
1. Add a JSON file with your name as the filename, e.g. `taylor-swift.json`, to the appropriate directory. Fill out your information.
2. Send a PR.
Example JSON file:
```json
{
"first": "Taylor",
"last": "Swift",
"twitter": "SwiftOnSecurity"
}
```
Valid keys:
- `first`
- `last`
- `email`
- `osf`
- `github`
- `twitter`
- `personal`
## Build the site
- Install requirements:
```
pip install -r requirements.txt
```
- Build the site (and watch for changes):
```
inv watch -b
```