An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# SHARE Directory

[![Build Status](https://travis-ci.org/CenterForOpenScience/share-directory.svg?branch=master)](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
```