appli 2.0.1 → 2.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. data/doc/Capfile +21 -0
  2. metadata +2 -1
data/doc/Capfile ADDED
@@ -0,0 +1,21 @@
1
+ ## Requires the Appli deployment recipes, do not remove this line or your
2
+ ## deployments will not work.
3
+ require 'appli/deploy'
4
+
5
+ ## The path on the server where you wish to deploy your application.
6
+ set :deploy_to, "/opt/apps/default"
7
+
8
+ ## The repository from which you wish to deploy your application
9
+ ## from should be entered here.
10
+ set :repository, "{{repourl}}"
11
+
12
+ ## Defines the database credentials here (excluding the password) as
13
+ ## these will be used as part of your setup process.
14
+ set :database_host, "{{dbhost}}"
15
+ set :database_name, "{{dbname}}"
16
+ set :database_user, "{{dbuser}}"
17
+
18
+ ## The servers you wish to deploy to. The server with the 'database_ops'
19
+ ## parameter will be the one where database operations (migrations) are
20
+ ## executed.
21
+ role :app, "{{ip}}", :database_ops => true
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appli
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.1
4
+ version: 2.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -20,6 +20,7 @@ extra_rdoc_files: []
20
20
  files:
21
21
  - bin/applify
22
22
  - lib/appli/deploy.rb
23
+ - doc/Capfile
23
24
  homepage: http://www.applihq.com
24
25
  licenses: []
25
26
  post_install_message: