mirror of
https://github.com/a2nt/silverstripe-webpack.git
synced 2024-10-22 17:05:31 +02:00
IMPR: Some things sorting
This commit is contained in:
parent
a4e2f12b71
commit
46fa25a04d
@ -11,8 +11,8 @@ SilverStripe\SpamProtection\Extension\FormSpamProtectionExtension:
|
|||||||
default_spam_protector: UndefinedOffset\NoCaptcha\Forms\NocaptchaProtector
|
default_spam_protector: UndefinedOffset\NoCaptcha\Forms\NocaptchaProtector
|
||||||
|
|
||||||
UndefinedOffset\NoCaptcha\Forms\NocaptchaField:
|
UndefinedOffset\NoCaptcha\Forms\NocaptchaField:
|
||||||
site_key: '6LfKgywaAAAAAH2VuHILbaNoUs0p0YZBNbNGyIsh' #Your site key (required)
|
site_key: '`NOCAPTCHA_SITE_KEY`' #Your site key (required)
|
||||||
secret_key: '6LfKgywaAAAAAJ0mxLSg1pZQIqui1gXSp2GGRKbY' #Your secret key (required)
|
secret_key: '`NOCAPTCHA_SECRET_KEY`' #Your secret key (required)
|
||||||
verify_ssl: true #Allows you to disable php-curl's SSL peer verification by setting this to false (optional, defaults to true)
|
verify_ssl: true #Allows you to disable php-curl's SSL peer verification by setting this to false (optional, defaults to true)
|
||||||
default_theme: 'light' #Default theme color (optional, light or dark, defaults to light)
|
default_theme: 'light' #Default theme color (optional, light or dark, defaults to light)
|
||||||
default_type: 'image' #Default captcha type (optional, image or audio, defaults to image)
|
default_type: 'image' #Default captcha type (optional, image or audio, defaults to image)
|
||||||
|
@ -19,10 +19,10 @@ A2nt\ElementalBasics\Elements\MapElement:
|
|||||||
|
|
||||||
BetterBrief\GoogleMapField:
|
BetterBrief\GoogleMapField:
|
||||||
default_options:
|
default_options:
|
||||||
api_key: ''
|
api_key: '`GOOGLEMAPS_API_KEY`'
|
||||||
|
|
||||||
Symbiote\Addressable\MapboxGeocodeService:
|
Symbiote\Addressable\MapboxGeocodeService:
|
||||||
mapbox_api_key: ''
|
mapbox_api_key: '`MAPBOX_API_KEY`'
|
||||||
|
|
||||||
SilverStripe\SiteConfig\SiteConfig:
|
SilverStripe\SiteConfig\SiteConfig:
|
||||||
map_type: "google-maps"
|
map_type: "google-maps"
|
||||||
|
@ -10,11 +10,11 @@ A2nt\CMSNiceties\Templates\DeferredRequirements:
|
|||||||
deferred: true
|
deferred: true
|
||||||
noreact: true
|
noreact: true
|
||||||
nojquery: true
|
nojquery: true
|
||||||
jquery_version: '3.4.1'
|
jquery_version: '`JQUERY_VER`'
|
||||||
fontawesome_svg: false
|
fontawesome_svg: false
|
||||||
|
|
||||||
SilverStripe\FontAwesome\FontAwesomeField:
|
SilverStripe\FontAwesome\FontAwesomeField:
|
||||||
version: '6.4.2'
|
version: '`FONTAWESOME_VER`'
|
||||||
|
|
||||||
SilverStripe\View\Requirements:
|
SilverStripe\View\Requirements:
|
||||||
disable_flush_combined: true
|
disable_flush_combined: true
|
||||||
|
12
env-dist
12
env-dist
@ -7,3 +7,15 @@ SS_DEFAULT_ADMIN_USERNAME=''
|
|||||||
SS_DEFAULT_ADMIN_PASSWORD=''
|
SS_DEFAULT_ADMIN_PASSWORD=''
|
||||||
|
|
||||||
SS_ENVIRONMENT_TYPE='dev'
|
SS_ENVIRONMENT_TYPE='dev'
|
||||||
|
|
||||||
|
NOCAPTCHA_SITE_KEY=''
|
||||||
|
NOCAPTCHA_SECRET_KEY=''
|
||||||
|
|
||||||
|
GOOGLEMAPS_API_KEY=''
|
||||||
|
MAPBOX_API_KEY=''
|
||||||
|
|
||||||
|
APP_SMTP_USERNAME=''
|
||||||
|
APP_SMTP_PASSWORD=''
|
||||||
|
|
||||||
|
FONTAWESOME_VER='6.4.2'
|
||||||
|
JQUERY_VER='3.4.1'
|
||||||
|
Loading…
Reference in New Issue
Block a user