The recommended directory structure of an XSLForms application is as follows:
__init__.py
file and other source files,
containing the Web resources and other
application logic.For example, we might create a directory structure like this:
Configurator
,
containing...__init__.py
file containing the Web
resources and other application logic.Resources
containing
non-code resources.In UNIX-style commands, this would be done 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.