Add rake tasks, provisioning, and templates
This commit is contained in:
parent
20bee0fac4
commit
cdf390f082
7 changed files with 193 additions and 11 deletions
23
Rakefile
Normal file
23
Rakefile
Normal file
|
@ -0,0 +1,23 @@
|
|||
# "dev" => {
|
||||
# "host" => "vlad@simone.mayfirst.org",
|
||||
# "path" => "/var/local/drupal/findit/web",
|
||||
# "backups" => "/tmp",
|
||||
# },
|
||||
ENVIRONMENTS = {
|
||||
"test" => {
|
||||
"host" => "agaric_test@drutopia.org",
|
||||
"path" => "/home/agaric_test/site/web",
|
||||
"drush" => "/home/agaric_test/site/vendor/bin/drush",
|
||||
"backups" => "/tmp",
|
||||
},
|
||||
"live" => {
|
||||
"host" => "agaric_live@drutopia.org",
|
||||
"path" => "/home/agaric_live/site/web",
|
||||
"drush" => "/home/agaric_live/site/vendor/bin/drush",
|
||||
"backups" => "/tmp",
|
||||
},
|
||||
}
|
||||
TAGNAMES = %w(stable)
|
||||
DRUPAL = "web"
|
||||
PROFILE = "agaric"
|
||||
BUILDDIR = "/tmp/build"
|
Loading…
Add table
Add a link
Reference in a new issue