Skip to content

Commit

Permalink
Updating aliases in hopes of workage
Browse files Browse the repository at this point in the history
  • Loading branch information
eaton committed Feb 23, 2017
1 parent af50710 commit f839dfa
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
1 change: 0 additions & 1 deletion Vagrantfile
Expand Up @@ -17,7 +17,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.hostname = "eldrich"
config.ssh.insert_key = true
config.ssh.forward_agent = true
config.ssh.private_key_path = "~/.ssh/id_rsa"


config.vm.synced_folder "./", "/vagrant", id: "vagrant-root",
Expand Down
13 changes: 13 additions & 0 deletions drush/site-aliases/aliases.drushrc.php
Expand Up @@ -4,9 +4,22 @@
'remote-user' => 'eaton',
'root' => '/home/eaton/eldrich/web',
'uri' => 'http://eldrich.host',
'path-aliases' => array(
'%drush-script' => '/home/eaton/.composer/vendor/bin/drush'
),
'command-specific' => array (
'sql-sync' => array (
'no-dump' => TRUE,
),
),
);

$aliases["local"] = array (
'root' => '/vagrant/web',
'uri' => 'http://eldrich.local',
'command-specific' => array (
'sql-sync' => array (
'no-dump' => TRUE,
),
),
);

0 comments on commit f839dfa

Please sign in to comment.