TideSDK Project Structure - LemontechSA/TideSDK GitHub Wiki

The following is a representation of the structure of TideSDK. A brief description of the main folders, function and what they contain is given below to help you navigate the project

├── CREDITS                      Credits file
├── LICENSE                      License file
├── README.md                    Readme file
├── SConscript.dist              [scons configuration file]
├── SConstruct                   [scons configuration file]
├── apidoc                       Folder that contains the TideSDK API documentation
│   ├── Titanium
│   ├── Titanium.yml
│   ├── docgen.py
│   └── templates
├── build                        Folder that is the target for the compiled applications on scons.
│   └── osx                      Folder that holds the compiled applications on scons for MacOSX.
├── installer
│   ├── SConscript               [scons resource]
│   ├── linux
│   ├── osx
│   └── win32
├── kroll
│   ├── CREDITS
│   ├── LICENSE
│   ├── README
│   ├── SConscript
│   ├── SConscript.thirdparty
│   ├── SConstruct
│   ├── boot
│   ├── libkroll
│   ├── modules
│   ├── site_scons
│   ├── thirdparty-osx-i386-r7
│   └── tools
├── modules
│   ├── SConscript               [scons resource]
│   ├── ti.App                   A module for holding currently running application specific functionality.
│   ├── ti.Codec                 A module for dealing with encoding and decoding.
│   ├── ti.Database              A module for dealing with Database storage.
│   ├── ti.Filesystem            A module for accessing the Filesystem.
│   ├── ti.Media                 A module for dealing with media.
│   ├── ti.Monkey
│   ├── ti.Network               A module for network functionality.
│   ├── ti.Platform              A module for exposing platform-specific functionality.
│   ├── ti.Process               A module for creating processes.
│   ├── ti.UI                    A module for creating processes.
│   └── ti.Worker                A module for creating Worker threads.
├── sdk
│   ├── PyRTF
│   ├── __init__.py
│   ├── __init__.pyc
│   ├── app.py
│   ├── app.pyc
│   ├── env.py
│   ├── env.pyc
│   ├── google_closure
│   ├── linux_app.py
│   ├── linux_app.pyc
│   ├── osx
│   ├── osx_app.py
│   ├── osx_app.pyc
│   ├── tibuild.py               Script for building TideSDK applications
│   ├── win32
│   ├── win32_app.py
│   └── win32_app.pyc
├── site_scons                   [scons resource]
│   ├── scons_stats.py
│   ├── simplejson
│   └── site_init.py
└── tools
    ├── SConscript               [scons resource]
    ├── drillbit                 Unit Test Framework for TideSDK
    ├── sandbox                  Sample application
    └── sdkinstaller             Install sdk on