🤖 Microservice to cache and expose our GitHub projects. Beep boop.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
Go to file
Matthias Kretschmann ef4eabb88b
Merge pull request #45 from bigchaindb/greenkeeper/chalk-2.4.1
5 years ago
media 🎭 it's a thing 6 years ago
test 🎭 it's a thing 6 years ago
.editorconfig 🎭 it's a thing 6 years ago
.gitignore add release url to bigchaindb 5 years ago
.travis.yml Travis fixes 6 years ago
index.js add release url to bigchaindb 5 years ago
license.md 🎭 it's a thing 6 years ago
package.json fix(package): update chalk to version 2.4.1 5 years ago
readme.md update docs 5 years ago

readme.md

github-projects

Microservice to cache and expose GitHub projects for use throughout www.bigchaindb.com.

Build Status XO code style Greenkeeper badge

API

Endpoint: https://bigchaindb-github.now.sh

GET /

200: Returns a list of all public projects as follows

[
  {
    "name": "project-name",
    "description": "The description",
    "stars": 3040,
    "forks": 293,
    "is_fork": false,
    "release": "v0.10.0",
    "release_url": "https://github.com/bigchaindb/bigchaindb/releases/tag/v0.10.0",
    "url": "https://github.com/bigchaindb/project",
    "topics": [
      "bigchaindb",
      "bigchaindb-driver",
      "python"
    ]
  }
]

Development

Install dependencies:

npm install

And run the server:

npm start

Test

Run the tests:

npm test

Deployment

Deploy to now, make sure to switch to BigchainDB org before deploying:

# first run
now login
now switch

# deploy
now
# switch alias to new deployment
now alias

Authors

Blatantly copied from inspired by zeit/github-projects