mirror of
https://github.com/dokku/dokku.git
synced 2025-12-25 16:29:30 +01:00
This ensures the value is correct, where previously it was computed based on a file - and therefore did not distinguish between git:from-archive and git:from-image. Closes #4464
16 lines
413 B
Go
16 lines
413 B
Go
package apps
|
|
|
|
var (
|
|
// DefaultProperties is a map of all valid network properties with corresponding default property values
|
|
DefaultProperties = map[string]string{
|
|
"deploy-source": "",
|
|
"deploy-source-metadata": "",
|
|
}
|
|
|
|
// GlobalProperties is a map of all valid global network properties
|
|
GlobalProperties = map[string]bool{
|
|
"deploy-source": true,
|
|
"deploy-source-metadata": true,
|
|
}
|
|
)
|