fix(modules/django-apps): Add descriptions where missing

This commit is contained in:
Tom Hubrecht 2024-12-13 16:38:36 +01:00
parent 3872b17ff6
commit 76419de740
Signed by: thubrecht
SSH key fingerprint: SHA256:CYNvFo44Ar9qCNnWNnvJVhs0QXO9AZjOLlPeWcSij3Q

View file

@ -326,12 +326,18 @@ in
type = str; type = str;
readOnly = true; readOnly = true;
default = "/var/lib/django-apps/${name}"; default = "/var/lib/django-apps/${name}";
description = ''
The directory containing the various files necessary for the website to function.
'';
}; };
sourceDirectory = mkOption { sourceDirectory = mkOption {
type = str; type = str;
readOnly = true; readOnly = true;
default = "${config.baseDirectory}/source"; default = "${config.baseDirectory}/source";
description = ''
The path where the source code of the django application will be stored. It is an absolute path.
'';
}; };
staticDirectory = mkOption { staticDirectory = mkOption {
@ -355,6 +361,10 @@ in
} }
) )
); );
default = { };
description = ''
The set of django websites to deploy.
'';
}; };
}; };