kv_file_definition.md 795 B

Key Value File - Definition

This document defines the standard of a key value file (.kv).

  1. A Key Value File needs to have the file extension ".kv".
  2. A Key Value Pair, which is defined in such a file, has the following format:

    port=8080;
    

    The key is defined at the beginning of a line followed by an "=" sign for assignment.
    The value (which is the assigment) comes write after the "=" sign. Please note that no quotes are required. To mark the end of a pair definition a semicolon ";" is required.

  3. Every line in a .kv file, which does not contain a "=" and a ";" sign, will be considered as a comment. Also, adding any text to a line after a semicolon has been set - to mark the end of a pair definition - will be ignored.