Creating Applications: Create a Directory

The recommended directory structure of an XSLForms application is as follows:

Example Directory Structure
A top-level directory corresponding to a Python package VerySimple
__init__.py
A subdirectory containing non-code resources for the application
Resources
...

For the above example, the directory structure would be created using UNIX-style commands as follows:

mkdir VerySimple
mkdir VerySimple/Resources
touch VerySimple/__init__.py

It is in the Resources subdirectory that we will save our template files. First, however, we must undertake some data definition as the next activity in the application development process.