starting the rename

This commit is contained in:
Trent Mick 2015-08-25 11:49:46 -07:00
parent 99679fff2a
commit 7d706a0358
8 changed files with 17 additions and 37 deletions

View File

@ -1 +1 @@
# node-sdc CLI Changelog
# node-triton changelog

View File

@ -1,13 +1,13 @@
#
# Copyright (c) 2014, Joyent, Inc. All rights reserved.
# Copyright (c) 2015, Joyent, Inc. All rights reserved.
#
# Makefile for node-sdc
# Makefile for node-triton
#
#
# Vars, Tools, Files, Flags
#
JS_FILES := bin/sdc \
JS_FILES := bin/triton \
$(shell find lib -name '*.js' | grep -v '/tmp/')
JSL_CONF_NODE = tools/jsl.node.conf
JSL_FILES_NODE = $(JS_FILES)

View File

@ -1,5 +1,5 @@
`sdc` is a CLI for Joyent SmartDataCenter and the
Joyent Public Cloud (<https://my.joyent.com>,
`triton` is a tool for Joyent's Triton (a.k.a. SmartDataCenter), either for on-premises installations
of Triton or Joyent's Public Cloud (<https://my.joyent.com>,
<http://www.joyent.com/products/compute-service>).
**This project is experimental and probably broken. For now, please look
@ -8,15 +8,15 @@ at [node-smartdc](https://github.com/joyent/node-smartdc).**
# Installation
1. Install [node.js](http://nodejs.org/).
2. `npm install -g sdc`
2. `npm install -g git://github.com/joyent/node-triton`
Verify that installed and is on your PATH:
$ sdc --version
sdc CLI 1.0.0
$ triton --version
Triton client 1.0.0
Before you can used the CLI you'll need a Joyent account, an SSH key uploaded
and `sdc` configured with those account details.
and `triton` configured with those account details.
# Setup
@ -27,7 +27,7 @@ TODO
TODO
# node-sdc differences with node-smartdc
# node-triton differences with node-smartdc
- There is a single `sdc` command instead of a number of `sdc-FOO` commands.
- The `SDC_USER` envvar is accepted in preference to `SDC_ACCOUNT`.

View File

@ -1,8 +1,8 @@
#!/usr/bin/env node
/*
* Copyright (c) 2014 Joyent Inc. All rights reserved.
* Copyright (c) 2015 Joyent Inc. All rights reserved.
*
* sdc command
* triton command
*/
var p = console.log;
@ -10,5 +10,5 @@ var cmdln = require('cmdln');
var CLI = require('../lib/cli');
if (require.main === module) {
cmdln.main(CLI, process.arg, {showCode: true});
cmdln.main(CLI, process.argv, {showCode: true});
}

View File

@ -1,10 +0,0 @@
---
title: sdcadm (Administer a SDC standup)
markdown2extras: wiki-tables, code-friendly, cuddled-lists, link-patterns
markdown2linkpatternsfile: link-patterns.txt
apisections:
---
# sdcadm
TODO

View File

@ -1 +0,0 @@
/([A-Z]+-\d+)/ https://devhub.joyent.com/jira/browse/\1

View File

@ -1,12 +1,3 @@
{
"defaultProfile": "env",
"dc": {
"us-east-1": "https://us-east-1.api.joyent.com",
"us-west-1": "https://us-west-1.api.joyent.com",
"us-sw-1": "https://us-sw-1.api.joyent.com",
"eu-ams-1": "https://eu-ams-1.api.joyent.com"
},
"dcAlias": {
"joyent": ["us-east-1", "us-sw-1", "us-west-1", "eu-ams-1"]
}
"defaultProfile": "env"
}

View File

@ -1,6 +1,6 @@
{
"name": "sdc",
"description": "Joyent SmartDataCenter CLI (http://www.joyent.com/products/compute-service)",
"name": "triton",
"description": "Joyent Triton tool and client (http://www.joyent.com/products/compute-service)",
"version": "1.0.0",
"author": "Joyent (joyent.com)",
"private": true,