Capistrano Development Directory
Code Block |
---|
~/development/my_cute_cat ├── .git ├── .gitignore ├── Capfile ├── README.txt ├── backup ├── cache ├── config ├── private_files └── public |
Inside the config directory
Code Block |
---|
config ├── deploy │ ├── production.rb │ └── staging.rb └── deploy.rb |
Inside the public directory
Code Block |
---|
public ├── CHANGELOG.txt ├── COPYRIGHT.txt ├── INSTALL.mysql.txt ├── INSTALL.pgsql.txt ├── INSTALL.txt ├── LICENSE.txt ├── MAINTAINERS.txt ├── UPGRADE.txt ├── cron.php ├── includes ├── index.php ├── install.php ├── misc ├── modules ├── profiles ├── robots.txt ├── scripts ├── sites ├── themes ├── update.php └── xmlrpc.php |
The Development Server
Code Block |
---|
htdocs/ ├── index.htm ├── kitty -> ~/development/my_cute_cat/public/ |
The Staging or Production Server
Panel |
---|
Server Directory * *Note: We currently don't have the servers set up to follow Capistrano's 'current' symlink. To work things out I've added a 'cap' directory: Here is a JIRA issue about setting up new development and deploy servers. |
What we've got now:
Code Block |
---|
/libweb/sites/featureserver.test.library.cornell.edu/cap . |-- backup | `-- staging-snapshot-20131107171019.sql |-- cache |-- current -> /libweb/sites/featureserver.test.library.cornell.edu/cap/releases/20131107171019 |-- files | |-- ctools | `-- fserver |-- log |-- private_files |-- releases | |-- 20131107022256 | `-- 20131107171019 |-- settings.php |-- shared | |-- cached-copy | |-- log | |-- pids | `-- system |-- subsites `-- tmp |
Inside current
Code Block |
---|
current/ |-- Capfile |-- README.txt |-- REVISION |-- config | |-- deploy | `-- deploy.rb |-- log -> /libweb/sites/featureserver.test.library.cornell.edu/cap/shared/log |-- public | |-- CHANGELOG.txt | |-- COPYRIGHT.txt | |-- INSTALL.mysql.txt | |-- INSTALL.pgsql.txt | |-- INSTALL.txt | |-- LICENSE.txt | |-- MAINTAINERS.txt | |-- UPGRADE.txt | |-- cache -> /libweb/sites/featureserver.test.library.cornell.edu/cap/cache | |-- cron.php | |-- includes | |-- index.php | |-- install.php | |-- misc | |-- modules | |-- profiles | |-- robots.txt | |-- scripts | |-- sites | |-- system -> /libweb/sites/featureserver.test.library.cornell.edu/cap/shared/system | |-- themes | |-- update.php | `-- xmlrpc.php `-- tmp `-- pids -> /libweb/sites/featureserver.test.library.cornell.edu/cap/shared/pids |
Inside current/public/sites
Code Block |
---|
current/public/sites/ |-- all | |-- README.txt | `-- modules `-- default |-- default.settings.php |-- files -> /libweb/sites/featureserver.test.library.cornell.edu/cap/files |-- settings.php -> /libweb/sites/featureserver.test.library.cornell.edu/cap/settings.php `-- tmp -> /libweb/sites/featureserver.test.library.cornell.edu/cap/tmp |