*** This version of Confluence is for testing only and contains a copy of content from June 29th 2026. No changes will be preserved. ***
...
- featureserver_test_library_cornell_edu
- .git
- .gitignore
- README
- backup/ - place for backup files
- private_files/ - point Drupal's private file directory at this directory (later)
- public/ - put your Drupal site here (later)
Here's what .gitignore looks like:
| Code Block |
|---|
# .gitignore # Ignore configuration files that may contain sensitive information. public/sites/*/*settings*.php !public/sites/*/default.settings.php # Ignore paths that contain generated content. cache/ public/sites/default/files public/sites/default/tmp private_files # Ignore .htaccess files since servers want them to be empty public/.htaccess |
Let capistrano create its default files
| Code Block |
|---|
bash> cd featureserver_test_library_cornell_edu
bash> capify .
|
Now the directory looks like this:
- featureserver_test_library_cornell_edu
- .git
- .gitignore
- Capfile
- config
- deploy.rb
- README
- backup/ - place for backup files
- private_files/ - point Drupal's private file directory at this directory (later)
- public/ - put your Drupal site here (later)
Server Directory