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 /config/deploy.rb | |
| parent | c538fbb9ec6405d5a06e3b39001a22f87f335e9f (diff) | |
start configuring cap
Diffstat (limited to 'config/deploy.rb')
| -rw-r--r-- | config/deploy.rb | 7 |
1 files changed, 4 insertions, 3 deletions
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 |
