github-projects/readme.md

88 lines
2.3 KiB
Markdown
Raw Permalink Normal View History

2017-05-08 20:46:26 +02:00
# [![github-projects](media/repo-banner@2x.png)](https://www.bigchaindb.com)
> Microservice to cache and expose GitHub projects for use throughout [www.bigchaindb.com](https://www.bigchaindb.com).
[![Build Status](https://travis-ci.org/bigchaindb/github-projects.svg?branch=master)](https://travis-ci.org/bigchaindb/github-projects)
[![XO code style](https://img.shields.io/badge/code_style-XO-5ed9c7.svg)](https://github.com/sindresorhus/xo)
2017-05-11 17:55:12 +02:00
[![Greenkeeper badge](https://badges.greenkeeper.io/bigchaindb/github-projects.svg)](https://greenkeeper.io/)
2017-05-08 20:46:26 +02:00
<img src="http://forthebadge.com/images/badges/powered-by-electricity.svg" height="20"/>
<img src="http://forthebadge.com/images/badges/as-seen-on-tv.svg" height="20"/>
<img src="http://forthebadge.com/images/badges/uses-badges.svg" height="20"/>
## API
Endpoint: [`https://bigchaindb-github.now.sh`](https://bigchaindb-github.now.sh)
### GET /
**200**: Returns a list of all public projects as follows
```json
[
{
"name": "project-name",
"description": "The description",
"stars": 3040,
"forks": 293,
"is_fork": false,
"release": "v0.10.0",
2018-04-10 14:51:03 +02:00
"release_url": "https://github.com/bigchaindb/bigchaindb/releases/tag/v0.10.0",
2017-06-28 20:19:42 +02:00
"url": "https://github.com/bigchaindb/project",
"topics": [
"bigchaindb",
"bigchaindb-driver",
"python"
]
2017-05-08 20:46:26 +02:00
}
]
```
## Development
Install dependencies:
```bash
npm install
```
And run the server:
```bash
npm start
```
2017-05-09 01:48:09 +02:00
## Test
Run the tests:
```bash
npm test
```
2017-05-08 20:46:26 +02:00
## Deployment
2020-05-30 03:41:32 +02:00
Every branch is automatically deployed to [Vercel](https://vercel.com) with their GitHub integration. A link to a deployment will appear under each Pull Request.
The latest deployment of the `master` branch is automatically aliased to `bigchaindb-github.now.sh`, configured as `alias` in [`vercel.json`](vercel.json).
### Manual Deployment
If needed, app can be deployed manually. Make sure to switch to Ocean Protocol org before deploying:
2017-05-08 20:46:26 +02:00
```bash
# first run
now login
now switch
# deploy
now
# switch alias to new deployment
now alias
2017-05-08 20:46:26 +02:00
```
## Authors
- Matthias Kretschmann ([@kremalicious](https://github.com/kremalicious)) - [BigchainDB](https://www.bigchaindb.com)
Blatantly ~~copied from~~ inspired by [zeit/github-projects](https://github.com/zeit/github-projects)