Blitz Manual
 

Configuring Blitz

NOTE the configuration information in this document is valid as of software version 0.2.2

Blitz uses JSON configuration files to set up server and client. A sample configuration file looks like:

{
    "server_port": 8999, 
    "database_path": "C:\\Code\\blitz\\app.db", 
    "server_ip": "192.168.1.8", 
    "debug": false, 
    "database_port": 6379, 
    "use_netscanner": false
}

You can see that there are a list of configuration options with values. Each line takes the following form:

    "confiuration_name": "configuration_value",

You can enter any such pairs into the configuration file, which is located at

    \your_path_to_blitz\blitz\config.json

Only configuration_names that Blitz recognises will be considered, however each of the client and server expects certain names to be present. If these names are not present then defaults will be used and saved to the file.

Server configuration

The server expects the following minimum configuration names:

Client configuration

The client expects the following minimum configuration names:


What next?
- Go back to the installation instructions
- Learn how to run Blitz.
- Learn about Raspberry Pi servers