Book Image

FuelPHP Application Development Blueprints

By : Sebastien Drouyer
Book Image

FuelPHP Application Development Blueprints

By: Sebastien Drouyer

Overview of this book

Table of Contents (13 chapters)
FuelPHP Application Development Blueprints
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

The Novius OS file system hierarchy


Now that we have looked at the basics of Novius OS and its interface, let's dive into the directory in which we have installed Novius OS. At the time of writing, the current version of Novius OS (Elche) has the following directory hierarchy:

  • /local: This folder contains all code, configuration, and applications that are specific to the website. It contains the following folders:

    • /local/applications: This folder contains all available non-core applications.

    • /local/cache: All files here allows Novius OS and its applications to cache data in order to improve the website's performance.

    • /local/classes: This includes classes used by the website that don't belong to the core or any application.

    • /local/config: This includes configuration files, including the FuelPHP main configuration file and the database configuration file.

    • /local/data: These are data files created by Novius OS and its applications.

    • /local/metadata: These are files created by Novius OS. Unlike...