19 lines
433 B
Python
19 lines
433 B
Python
# Copyright: (c) 2024, Luca Bilke <luca@bil.ke>
|
|
# MIT License (see LICENSE)
|
|
|
|
|
|
class ModuleDocFragment:
|
|
DOCUMENTATION = r"""
|
|
options:
|
|
project_name:
|
|
description:
|
|
- The name of the project.
|
|
type: str
|
|
required: true
|
|
project_dir:
|
|
description:
|
|
- The directory to place compose files in.
|
|
type: path
|
|
required: false
|
|
default: /var/lib/ez_compose
|
|
"""
|