Ferreteria/v0.6/clade/boot

From Woozle Writes Code
< Ferreteria‎ | v0.6‎ | clade
Jump to navigation Jump to search
Subpages

About

  • Purpose: namespace for code which needs to be run before anything else.
    • It starts up the clade-lookup system, among other things, so can't depend on that.
    • It also loads the appropriate Screen class.
  • Path: [WFe]/src/@boot

Pages

type name notes
clade Screen common API for different types of output
space load stuff that gets loaded before everything else
code go.php the bootstrap file for Ferreteria

History

  • 2026-01-13 Moved from [WFe]/ to [WFe]/src/app/, to be more compatible with documentation conventions here.
  • 2026-01-14 Moved from [WFe]/src/app/ to [WFe]/src/@boot/
    • I'm trying a new convention of prefixing the folder-name with "@" to indicate that it contains code which doesn't follow the usual namespace/folder naming convention.
      • This also sorts those folders to the top, which is certainly appropriate here since it contains stuff which needs to be loaded first. (Maybe "load" should also be "@load"?)