1
0
mirror of https://github.com/oceanprotocol/community-numbers.git synced 2024-11-22 01:37:02 +01:00
🤖 Microservice to cache and expose community numbers. Beep boop.
Go to file
2019-06-06 20:26:32 +02:00
networks consolidate utils 2019-06-06 20:26:32 +02:00
.editorconfig initial commit 🐚 2019-05-14 20:52:48 +02:00
.eslintrc initial commit 🐚 2019-05-14 20:52:48 +02:00
.gitignore initial commit 🐚 2019-05-14 20:52:48 +02:00
.nowignore initial commit 🐚 2019-05-14 20:52:48 +02:00
.travis.yml initial commit 🐚 2019-05-14 20:52:48 +02:00
index.js add twitter follower count 2019-05-14 20:59:15 +02:00
LICENSE initial commit 🐚 2019-05-14 20:52:48 +02:00
now.json initial commit 🐚 2019-05-14 20:52:48 +02:00
package.json remove unneeded packages, switch to now dev 2019-06-06 20:04:36 +02:00
README.md remove unneeded packages, switch to now dev 2019-06-06 20:04:36 +02:00
utils.js consolidate utils 2019-06-06 20:26:32 +02:00

banner

community-numbers

Microservice to cache and expose community numbers for use throughout oceanprotocol.com.

Build Status js oceanprotocol Greenkeeper badge

API

Endpoint: https://oceanprotocol-community.now.sh

GET /

200: Returns a list of network numbers as follows:

{
    "github": {
        "stars": 1000,
        "repos": 1000
    },
    "medium": {
        "followers": 1000
    },
    "bounties": {
        "gitcoin": 1000,
        "bountiesNetwork": 1000,
        "total": 1000
    },
    "twitter": {
        "followers": 1000
    }
}

Development

Install dependencies:

npm install -g now
npm install

And run the server in dev mode:

npm start

Test

Run the tests:

npm test

Deployment

Deploy to now, make sure to switch to Ocean Protocol org before deploying:

# first run
now login
now switch

# deploy
now
# switch alias to new deployment
now alias

Authors