summaryrefslogtreecommitdiff
path: root/files/mail_webapp/README.md
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2015-11-05 23:17:04 -0800
committerelijah <elijah@riseup.net>2015-11-05 23:17:04 -0800
commita43bb056f220a860a1aa95d207d7103e9d732f7f (patch)
tree6f6627968300a41d4d808041336facef65d83fb2 /files/mail_webapp/README.md
parentb5241cb85179149c6d54da2d32ed113555d4ad74 (diff)
make mail.bitmask.net and demo.bitmask.net have different front page text.
Diffstat (limited to 'files/mail_webapp/README.md')
-rw-r--r--files/mail_webapp/README.md27
1 files changed, 27 insertions, 0 deletions
diff --git a/files/mail_webapp/README.md b/files/mail_webapp/README.md
new file mode 100644
index 0000000..9c3e434
--- /dev/null
+++ b/files/mail_webapp/README.md
@@ -0,0 +1,27 @@
+Customizing LEAP Webapp
+============================================
+
+By default, this directory is empty. Any file you place here will override the default files for the application.
+
+For example:
+
+ stylesheets/ -- overrides files Rails.root/app/assets/stylesheets
+ tail.scss -- included before all others
+ head.scss -- included after all others
+
+ public/ -- overrides files in Rails.root/public
+ favicon.ico -- custom favicon
+ img/ -- customary directory to put images in
+
+ views/ -- overrides files Rails.root/app/views
+ home/
+ index.html.haml -- this file is what shows up on the home page
+
+ locales/ -- overrides files in Rails.root/config/locales
+ en.yml -- overrides for English
+ de.yml -- overrides for German
+ and so on...
+
+For most changes, the web application must be restarted after any changes are made to the customization directory.
+
+Sometimes a `rake tmp:clear` and a rails restart is required to pick up a new stylesheet.