Allowed more config flexibility

This commit is contained in:
WilliamMiceli
2018-07-08 19:02:46 -04:00
parent 816064506c
commit 5bd8a3ab90
2 changed files with 36 additions and 14 deletions

View File

@@ -8,7 +8,7 @@ catalog:
# upgrade_from:
questions:
- variable: "LABEL_KEY_VALUE"
- variable: "HOST_LABEL"
label: "Host Label Key/Value Pair"
description: |
The Label Key/Value pair on the host which InvoiceNinja should be deployed
@@ -16,8 +16,16 @@ catalog:
required: false
type: string
- variable: "HTTP_PORT"
label: "HTTP Port"
- variable: "URL"
label: "URL"
description: |
The domain or hostname the service can be accessed at.
default: "http://localhost"
required: true
type: string
- variable: "HOST_HTTP_PORT"
label: "Host HTTP Port"
description: |
The HTTP port to access the web interface on.
default: "8000"
@@ -64,6 +72,20 @@ catalog:
required: true
type: string
- variable: "DB_ROOT_PASS"
label: "MySQL Root Password"
description: |
A secure password to be used by the "root" MySQL user.
required: true
type: password
- variable: "DB_USER_PASS"
label: "MySQL User Password"
description: |
A secure password to be used by the "ninja" MySQL user.
required: true
type: password
- variable: "APP_KEY"
label: "Encryption Key"
description: |