Skip to content

Commit ee248e0

Browse files
committed
opensourced, non-private, with childish-process dependency, and readme status / clarifications
1 parent 69147f1 commit ee248e0

File tree

4 files changed

+50
-59
lines changed

4 files changed

+50
-59
lines changed

README.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
# daps -- docker, ansible, processes & services
22

33
This is a devops project for infrastructure as code.
4+
5+
Not in active development... Though to be kept in mind,
6+
and hopefully taken further.
7+
8+
## Why
9+
410
[Culture is Defined by What You Cannot Say](http://thinkrelevance.com/blog/2014/02/17/culture-is-defined-by-what-you-cannot-say).
511

12+
## Ideas
613

714
Points of interest:
815

@@ -19,3 +26,7 @@ Clouds and services:
1926
* [DigitalOcean](https://digitalocean.com) or any better / more expensive clouds
2027
* [OpenShift](https://www.openshift.com) good for auto-scaling processing power
2128
* [Dynamo](http://aws.amazon.com/dynamodb) easy Datomic storage
29+
30+
## License
31+
32+
[MIT](http://orlin.mit-license.org)

bin/daps

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env coffee
22

33
daps = require("commander")
4-
{mp, exe, run} = require("./helpers")
4+
{exe, run} = require("childish-process")
55

66

77
# docker images | grep {repositoryID}

bin/helpers.coffee

-29
This file was deleted.

package.json

+38-29
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,41 @@
1-
{ "name": "daps"
2-
, "private": true
3-
, "description": "docker ansible packer serf"
4-
, "keywords": [ "astrolet", "devops" ]
5-
, "version": "0.0.1"
6-
, "repository":
7-
{ "type": "git"
8-
, "url": "git://github.com/orlin/daps.git"
9-
}
10-
, "bugs":
11-
{ "mail": "[email protected]"
12-
, "url" : "https://github.com/orlin/daps/issues"
13-
}
14-
, "author": "Orlin M Bozhinov <[email protected]>"
15-
, "contributors": []
16-
, "dependencies":
17-
{ "coffee-script": "*"
18-
, "commander": "*"
19-
, "bon": "*"
20-
, "gulp": "*"
21-
, "gulp-task-listing": "*"
22-
}
23-
, "devDependencies": {}
24-
, "bin": { "daps" : "./bin/daps.sh" }
25-
, "scripts": {}
26-
, "engines" : { "node" : "0.10.x" }
27-
, "licenses":
28-
[ { "type": "Copyright"
29-
, "url" : "http://astrolet.co/"
1+
{
2+
"name": "daps",
3+
"description": "docker ansible packer serf",
4+
"keywords": [
5+
"devops",
6+
"playground"
7+
],
8+
"version": "0.0.1",
9+
"repository": {
10+
"type": "git",
11+
"url": "git://github.com/orlin/daps.git"
12+
},
13+
"bugs": {
14+
"mail": "[email protected]",
15+
"url": "https://github.com/orlin/daps/issues"
16+
},
17+
"author": "Orlin M Bozhinov <[email protected]>",
18+
"contributors": [],
19+
"dependencies": {
20+
"bon": "*",
21+
"childish-process": "0.0.1",
22+
"coffee-script": "*",
23+
"commander": "*",
24+
"gulp": "*",
25+
"gulp-task-listing": "*"
26+
},
27+
"devDependencies": {},
28+
"bin": {
29+
"daps": "./bin/daps.sh"
30+
},
31+
"scripts": {},
32+
"engines": {
33+
"node": "0.10.x"
34+
},
35+
"licenses": [
36+
{
37+
"type": "MIT",
38+
"url": "http://orlin.mit-license.org"
3039
}
3140
]
3241
}

0 commit comments

Comments
 (0)