Documentation
¶
Index ¶
Constants ¶
View Source
const DdevSettingsFileSignature = "#ddev-generated"
DdevSettingsFileSignature is the text we use to detect whether a settings file is managed by us. If this string is found, we assume we can replace/update the settings file.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DrupalConfig ¶
type DrupalConfig struct {
DeployName string
DeployURL string
DatabaseName string
DatabaseUsername string
DatabasePassword string
DatabaseHost string
DatabaseDriver string
DatabasePort string
DatabasePrefix string
HashSalt string
IsDrupal8 bool
Signature string
}
DrupalConfig encapsulates all the configurations for a Drupal site.
func NewDrupalConfig ¶
func NewDrupalConfig() *DrupalConfig
NewDrupalConfig produces a DrupalConfig object with default.
type DrushConfig ¶
DrushConfig encapsulates configuration for a drush settings file.
func NewDrushConfig ¶
func NewDrushConfig() *DrushConfig
NewDrushConfig produces a DrushConfig object with default.
type WordpressConfig ¶
type WordpressConfig struct {
WPGeneric bool
DeployName string
DeployURL string
DatabaseName string
DatabaseUsername string
DatabasePassword string
DatabaseHost string
AuthKey string
SecureAuthKey string
LoggedInKey string
NonceKey string
AuthSalt string
SecureAuthSalt string
LoggedInSalt string
NonceSalt string
Docroot string
TablePrefix string
Signature string
}
WordpressConfig encapsulates all the configurations for a WordPress site.
func NewWordpressConfig ¶
func NewWordpressConfig() *WordpressConfig
NewWordpressConfig produces a WordpressConfig object with defaults.
Click to show internal directories.
Click to hide internal directories.