*** This version of Confluence is for testing only and contains a copy of content from June 29th 2026. No changes will be preserved. ***
...
Setting this up requires making a git repository for each site, creating a specific directory structure for the site on your development server, setting up a web accessible symbolic link, and tweaking the Capistrano configuration files to describe your staging & production servers. Through a combination of Puppet and Capistrano the staging and production servers get set up automatically.
...
| Code Block |
|---|
bash> git add Capfile config/ bash> git commit Capfile -m 'inital version from capify' bash> git commit config/ -m 'staging and production deploy instructions' |
The Drupal Site
Next step: build the drupal site inside public/ including an installation profile we can use to build the site on a target machine.
...