Folder structure under CAF. While packaging CAF for different platforms, ensure that this
folder structure is maintained.

├── config : Contains config scripts such as system-config.ini, log-config.ini.
|             CAF looks at this folder to get config files.
├── scripts : Startup script, script to run tests etc.,
├── src     : Contains CAF python code
│   └── appfw   : Highlevel python package. Imports will start from here.
│       ├── api
│       ├── hosting
│       ├── mgmt
│       ├── runtime
│       ├── staging
│       └── utils
└── tests   : CAF unit tests
    ├── resources
    ├── restapi
    ├── runtime
    ├── staging
    └── utils
