fix(modules/django-apps): Add descriptions where missing
All checks were successful
Build all the nodes / compute01 (push) Successful in 2m36s
Build all the nodes / rescue01 (push) Successful in 2m17s
Build all the nodes / storage01 (push) Successful in 2m16s
Build all the nodes / vault01 (push) Successful in 1m58s
Run pre-commit on all files / pre-commit (push) Successful in 41s
Build all the nodes / web02 (push) Successful in 1m58s
Build all the nodes / web01 (push) Successful in 2m17s
Build all the nodes / web03 (push) Successful in 1m47s
Build all the nodes / ap01 (push) Successful in 1m10s
Build all the nodes / bridge01 (push) Successful in 1m37s
Build all the nodes / geo02 (push) Successful in 1m50s
Build all the nodes / geo01 (push) Successful in 1m56s

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;
readOnly = true;
default = "/var/lib/django-apps/${name}";
description = ''
The directory containing the various files necessary for the website to function.
'';
};
sourceDirectory = mkOption {
type = str;
readOnly = true;
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 {
@ -355,6 +361,10 @@ in
}
)
);
default = { };
description = ''
The set of django websites to deploy.
'';
};
};