mirror of
https://github.com/yldio/copilot.git
synced 2024-11-13 06:40:06 +02:00
triton-graphql -> Joyent cloudapi-graphql (#22)
This brings the name of the application inline with the terminology in the Joyent triton / cloud api documentation.
This commit is contained in:
parent
fe5b7ffc5c
commit
e71fc374bc
@ -11,9 +11,9 @@ We will also include multiple PoC's of various bits of functionality from UI's p
|
||||
|
||||
```
|
||||
.
|
||||
└── triton-graphql
|
||||
└── cloudapi-graphql
|
||||
```
|
||||
|
||||
### triton-graphql
|
||||
### cloudapi-graphql
|
||||
|
||||
An implementation of the [Joyent CloudAPI](https://apidocs.joyent.com/cloudapi/) in GraphQL.
|
||||
|
@ -1,6 +1,6 @@
|
||||
# triton-graphql
|
||||
# cloudapi-graphql
|
||||
|
||||
Proof-of-Concept of the Triton API running on GraphQL.
|
||||
Proof-of-Concept of the [Joyent Cloud API](https://apidocs.joyent.com/cloudapi/) running on GraphQL.
|
||||
|
||||
## Setup
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "triton-graphql",
|
||||
"name": "cloudapi-graphql",
|
||||
"private": true,
|
||||
"license": "Apache-2.0",
|
||||
"version": "1.0.0",
|
@ -3,9 +3,10 @@ const credentials = require('../../credentials.json');
|
||||
const auth = require('smartdc-auth');
|
||||
const cloudapi = require('triton/lib/cloudapi2');
|
||||
const bunyan = require('bunyan');
|
||||
const pkg = require('../../package.json');
|
||||
|
||||
var log = bunyan.createLogger({
|
||||
name: 'triton-graphql'
|
||||
name: pkg.name,
|
||||
});
|
||||
|
||||
var client = cloudapi.createClient({
|
Loading…
Reference in New Issue
Block a user