The recommended directory structure of an XSLForms application is as follows:
Example Directory Structure |
||
---|---|---|
A top-level directory corresponding to a Python package | Configurator __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 Configurator
mkdir Configurator/Resources
touch Configurator/__init__.py
It is in the Resources
subdirectory that we will save
our template files when designing them as
part of the next activity in the application development process.