~/development/my_cute_cat ├── .git ├── .gitignore ├── Capfile ├── README.txt ├── backup ├── cache ├── config ├── private_files └── public |
Inside the config directory
config ├── deploy │ ├── production.rb │ └── staging.rb └── deploy.rb |
Inside the public directory
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 |
htdocs/ ├── index.htm ├── kitty -> ~/development/my_cute_cat/public/ |
|
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:
/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
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
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
|