crabgrass/config
Azul 4e634b0c8a update: repo location to liberate group
Did not update translations yet.
Also looks like the source url on transifex needs to be updated.
2021-12-17 19:52:19 +01:00
..
crabgrass
environments
initializers feat: add invisible_captcha on signup form 2020-06-20 12:30:09 +02:00
locales i18n: add rails translations for fa and hu 2020-04-28 10:33:52 +02:00
misc
sphinx
README
application.rb
boot.rb
database.yml.example
deploy.rb update: repo location to liberate group 2021-12-17 19:52:19 +01:00
directories.rb
en.yml update: repo location to liberate group 2021-12-17 19:52:19 +01:00
environment.rb
permissions.rb
preinitializer.rb
routes.rb
secrets.yml
thinking_sphinx.yml

README

these still need a place:
===================================

AssetExtension::Storage.make_required_dirs

THINGS TO CONFIGURE
==================================

There are three files that need to be configured for crabgrass:

  * config/crabgrass/secret.txt  (rake make_a_secret)
  * config/database.yml
  * config/crabgrass/crabgrass.[production|development|test].yml

There are many levels of possible defaults for configuration options.
In order of precedence, crabgrass will search:

   (1) the current site
   (2) the default site (if a site has default == true)
   (3) options configured in the file config/crabgrass.*.yml
   (4) last-stop hardcoded defaults in lib/crabgrass/conf.rb

RAILS INITIALIZATION PROCESS
======================================

  1. framework
     called from environment.rb

  2. config block
     in environment.rb

  3. environment
     in config/environments/*.rb

  4. plugins
     alpha order of everything in vendor/plugins, vendor/crabgrass_plugins,
     extensions/mods, and extensions/pages.

  5. gems

  6. initializers
     config/initalizers/*.rb

  7. view paths

  8. application classes

run rails with INFO=0 to see when these are loaded.

for much more detail, see http://railsguts.com/initialization.html