diff options
| author | Tyler Mercier <tylermercier@gmail.com> | 2013-07-22 12:45:32 -0600 |
|---|---|---|
| committer | Tyler Mercier <tylermercier@gmail.com> | 2013-07-22 15:03:42 -0600 |
| commit | 3f6280ddbff473e00370fdd0816733335f1ad1e9 (patch) | |
| tree | 6b2e31b6ebbef5f50aa1433e012b1f4e78601e79 | |
| parent | c538fbb9ec6405d5a06e3b39001a22f87f335e9f (diff) | |
start configuring cap
| -rw-r--r-- | Capfile | 5 | ||||
| -rw-r--r-- | config/deploy.rb | 7 |
2 files changed, 6 insertions, 6 deletions
@@ -1,4 +1,3 @@ load 'deploy' -# Uncomment if you are using Rails' asset pipeline - # load 'deploy/assets' -load 'config/deploy' # remove this line to skip loading any of the default tasks
\ No newline at end of file +load 'deploy/assets' +load 'config/deploy' diff --git a/config/deploy.rb b/config/deploy.rb index 98871c2..6384621 100644 --- a/config/deploy.rb +++ b/config/deploy.rb @@ -1,5 +1,6 @@ -set :application, "set your application name here" -set :repository, "set your repository location here" +set :application, "parley" +set :repository, "git@github.com:madebyuppercut/parley.git" +set :deploy_to, "/home/username/apps/projectname/current/public" # set :scm, :git # You can set :scm explicitly or Capistrano will make an intelligent guess based on known version control directory names # Or: `accurev`, `bzr`, `cvs`, `darcs`, `git`, `mercurial`, `perforce`, `subversion` or `none` @@ -22,4 +23,4 @@ role :db, "your slave db-server here" # task :restart, :roles => :app, :except => { :no_release => true } do # run "#{try_sudo} touch #{File.join(current_path,'tmp','restart.txt')}" # end -# end
\ No newline at end of file +# end |
