Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Drupal
drupalizer
Commits
b37f3851
Commit
b37f3851
authored
Nov 02, 2016
by
20th (Victor Nikulshin)
Committed by
Victor Nikulshin
Nov 07, 2016
Browse files
Change default vars values to something that does not crash Drupalizer
parent
03eddeb6
Changes
1
Show whitespace changes
Inline
Side-by-side
default_vars.py
View file @
b37f3851
...
...
@@ -5,7 +5,7 @@ from fabric.api import env
# Project settings
env
.
project_name
=
''
env
.
project_name
=
'
drupalizer-default
'
env
.
workspace
=
path
.
join
(
path
.
dirname
(
__file__
),
path
.
pardir
)
env
.
locale
=
False
...
...
@@ -13,21 +13,21 @@ env.locale = False
# Site
env
.
site_root
=
'{}/src/drupal'
.
format
(
env
.
workspace
)
env
.
site_name
=
''
env
.
site_name
=
'
Default Drupalizer
'
env
.
site_environment
=
'local'
env
.
site_profile
=
''
env
.
site_profile
=
'
standard
'
env
.
site_profile_repo
=
''
env
.
site_profile_makefile
=
''
env
.
site_profile_makefile
=
'
drupalizer.make
'
env
.
site_profile_branch
=
'7.x'
env
.
site_db_user
=
'dev'
env
.
site_db_pass
=
'dev'
env
.
site_db_host
=
'localhost'
env
.
site_db_name
=
''
env
.
site_db_name
=
'
dev
'
env
.
site_hostname
=
''
env
.
site_admin_user
=
'admin'
env
.
site_admin_pass
=
'admin'
env
.
site_subdir
=
'default'
env
.
site_languages
=
'
fr
'
env
.
site_languages
=
''
# PatternLab
...
...
@@ -56,9 +56,12 @@ env.container_ip = '172.17.0.0'
# Hook commands
# Example:
# env.hook_post_install = ['drush fra -y', 'drush cc all']
# env.hook_post_update = ['drush fra -y', 'drush cc all']
env
.
hook_post_install
=
[
'drush fra -y'
,
'drush cc all'
]
env
.
hook_post_update
=
[
'drush fra -y'
,
'drush cc all'
]
env
.
hook_post_install
=
[]
env
.
hook_post_update
=
[]
# Target environments definition
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment