This directory contains sample project files and related files for DataKiosk.

***INSTRUCTIONS FOR MYSQL***

    In order to use, you'll have to load the world.mysql dump file into a MySQL 
    server. First, create the 'world' database using your MySQL administration 
    tool.

    Then:
        'mysql world < world.mysql'

***INSTRUCTIONS FOR POSTGRESQL***

    In order to use, you'll have to load the world.postgresql dump file into a 
    PostgreSQL server. First, create the 'world' database using your PostgreSQL 
    administration tool.

    Then:
        'psql world -f world.postgresql'

Finally, you'll have to modify the relevant project file to change the 
connection parameters.

EXAMPLE:

    <property name="username">
        <string>YourUserNameHere</string>
    </property>
    <property name="password">
        <string>xxxxxxxxx</string>
    </property>
    <property name="hostname">
        <string>localhost</string>
    </property>

You'll also need to modify the paths for the icons in the relevant project file 
as well as the paths to the relevant Kugar report to reflect how they are on your system.

EXAMPLE:

    <property name="icon">
        <string>/home/UserName/path/to/datakiosk/samples/country.png</string>
    </property>

    <property name="templateurl">
        <string>/home/UserName/path/to/datakiosk/samples/world-mysql.kut</string>
    </property>

Now, open DataKiosk and load the project.

Cheers.
