appd 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +9 -0
- data/lib/appd/cli.rb +1 -0
- data/lib/appd/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fe94687a20020314445e934d7176dd00295d0cab
|
|
4
|
+
data.tar.gz: 62dc09b194ec930a1f84250e8d95920c1fe7dcc1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1336d432ea91ab64ccb7b17464b6a4034ebe064ae8ca07ef57ea8dbc8f5f9645f2bc7f3c9d7c61339fe99ded8cdf8a84f428c685851ef5803e14fda5cd150292
|
|
7
|
+
data.tar.gz: 3596612c844f9dc5c020c0e42f1ec6d42f14d3ef348110e12c7ce3843605685fe3cb716a5bee75a1183148aba04ff2f60c9ccb028b7ed8da82a51be80f2aee0d
|
data/README.md
CHANGED
|
@@ -2,8 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
Docker compose wrapper to manage multiple apps.
|
|
4
4
|
|
|
5
|
+
Appd uses [direnv](http://direnv.net/) to execute docker-compose
|
|
6
|
+
commands in isolation while using the app's own environment.
|
|
7
|
+
|
|
5
8
|
## Installation
|
|
6
9
|
|
|
10
|
+
Install [direnv](http://direnv.net/) if you haven't already.
|
|
11
|
+
|
|
7
12
|
Add this line to your application's Gemfile:
|
|
8
13
|
|
|
9
14
|
```ruby
|
|
@@ -21,6 +26,10 @@ Or install it yourself as:
|
|
|
21
26
|
## Usage
|
|
22
27
|
|
|
23
28
|
```sh
|
|
29
|
+
# Setup $APP_PATH
|
|
30
|
+
export APP_PATH /path/to/your/apps
|
|
31
|
+
|
|
32
|
+
# See help
|
|
24
33
|
appd help
|
|
25
34
|
```
|
|
26
35
|
|
data/lib/appd/cli.rb
CHANGED
|
@@ -12,6 +12,7 @@ module Appd
|
|
|
12
12
|
puts " appd APPNAME command\n\n"
|
|
13
13
|
puts "Commands:"
|
|
14
14
|
self.class.commands.each { |_, command| printf "%-30s %s\n", " #{command.usage} ", "# #{command.description}" }
|
|
15
|
+
puts "\nNote: appd looks for apps in the $APP_PATH directory."
|
|
15
16
|
end
|
|
16
17
|
|
|
17
18
|
desc "ps", "List containers"
|
data/lib/appd/version.rb
CHANGED