diff options
Diffstat (limited to 'config.py.in')
-rw-r--r-- | config.py.in | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/config.py.in b/config.py.in new file mode 100644 index 0000000..6764135 --- /dev/null +++ b/config.py.in @@ -0,0 +1,24 @@ +# the last release +TOP_RELEASE = 9 +# be sure that these directories are writable for the user running the application +DATA_PATH = "/var/lib/madb" +LOG_PATH = DATA_PATH +MIRROR_URL = "https://fr2.rpmfind.net/linux/mageia/distrib/" +# Name of the development version +DEV_NAME = "cauldron" +# Level of logging +LOG_LEVEL = "DEBUG" +BUGZILLA_URL = "https://bugs.mageia.org" +# List of architectures managed +ARCHES = { + "x86_64": "x86 64bits", + "i586": "x86 32bits", + "aarch64": "Arm 64bits", + "armv7hl": "Arm 32bits v7hl", +} +# Used as filter in search bar +DISTRIBUTION = { + DEV_NAME: "Mageia cauldron", + str(TOP_RELEASE): "Mageia " + str(TOP_RELEASE), + str(TOP_RELEASE - 1): "Mageia " + str(TOP_RELEASE -1), +} |