Where to Put Application FilesWhen the Node Manager builds an application, it creates several directories. Some are public, some are not. Some are framework directories, others are application directories. Some contain client-side files and others contain server-side code.
The application Directory holds server-side files. Put your PHP files and the Database Definition file here. The builder puts an .htaccess file into this directory that denies access to everybody. You can put subdirectories here and they will be properly handled by source and version control. The appclib Directory holds JS files that are specific to your application. Do not put CSS files here, they usually go with the Templates. You can put subdirectories here and they will be properly handled by source and version control. The apppub Directory holds any other publicly viewable files, such as images. You can put subdirectories here and they will be properly handled by source and version control. |

