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
66c471c1
Commit
66c471c1
authored
Mar 23, 2016
by
Emmanuel Milou
Browse files
Update default_vars config file
Refs #89070
parent
fd9b9e03
Changes
1
Hide whitespace changes
Inline
Side-by-side
default_vars.py
View file @
66c471c1
#********************************
# WARNING WARNING WARNING
#********************************
from
os
import
path
# YOU MUST NOT MODIFY THIS FILE!
from
fabric.api
import
env
# If you need to override the values of the variables defined in this file you should
# Copy and paste this file with the name local_vars.py and set your values there.
# When you create a file local_vars.py and define the values there, the fabfile.py file will use
# your values and not the values defined in this file.
# Project settings
env
.
project_name
=
''
env
.
workspace
=
path
.
join
(
path
.
dirname
(
__file__
),
path
.
pardir
)
env
.
interactive_mode
=
True
env
.
locale
=
False
#********************************
# END WARNING
#********************************
from
os
import
path
# Site
env
.
site_root
=
'{}/src/drupal'
.
format
(
env
.
workspace
)
env
.
site_name
=
''
env
.
site_environment
=
'local'
env
.
site_profile
=
''
env
.
site_profile_repo
=
''
env
.
site_profile_makefile
=
''
env
.
site_db_user
=
'dev'
env
.
site_db_pass
=
'dev'
env
.
site_db_host
=
'localhost'
env
.
site_db_name
=
''
env
.
site_hostname
=
''
env
.
site_admin_user
=
'admin'
env
.
site_admin_pass
=
'admin'
env
.
site_subdir
=
'default'
# Docker
env
.
docker_workspace
=
'/opt/sfl'
env
.
docker_site_root
=
'{}/src/drupal'
.
format
(
env
.
docker_workspace
)
env
.
bind_port
=
8001
env
.
apache_user
=
'www-data'
# Hook commands
# The Apache user
APACHE
=
'www-data'
# Variables to use at your local machine
LOCAL_WORKSPACE
=
path
.
join
(
path
.
dirname
(
__file__
),
path
.
pardir
)
LOCAL_DRUPAL_ROOT
=
'{}/src/drupal'
.
format
(
LOCAL_WORKSPACE
)
# Variables to use inside the docker container
DOCKER_WORKSPACE
=
"/opt/sfl"
DOCKER_PORT_TO_BIND
=
8001
# Database variables
DB_USER
=
'dev'
DB_PASS
=
'dev'
DB_HOST
=
'localhost'
DB_NAME
=
'sfl_boilerplate'
# Site variables
SITE_NAME
=
'SFL Boilerplate'
SITE_SUBDIR
=
'default'
SITE_PROFILE
=
'sflinux'
SITE_ADMIN_NAME
=
'admin'
SITE_ADMIN_PASS
=
'admin'
SITE_ENVIRONMENT
=
'local'
SITE_HOSTNAME
=
'local.boilerplate.sfl'
# Projects variables
PROJECT_NAME
=
'sfl_boilerplate'
# Installation profile
PROFILE
=
{
'sflinux'
:
'git@gitlab.savoirfairelinux.com:drupal/sflinux.git'
}
PROFILE_MAKE_FILE
=
'build/build-sflinux.make'
# Drush commands to be run at the end of the installation process
POST_INSTALL
=
[
'drush d-conf'
,
'drush fra -y'
,
'drush po-import fr --custom-only'
,
'drush cc all'
]
# Drush commands to be run at the end of the update process
POST_UPDATE
=
[
'drush d-conf'
,
'drush fra -y'
,
'drush po-import fr --custom-only'
,
'drush cc all'
]
# Test variables
TEST_DB_USER
=
'testuser'
TEST_DB_PASS
=
'testuser'
TEST_DB_NAME
=
'sfl_boilerplate_tests'
TEST_SITE_HOSTNAME
=
'tests.local.boilerplate.sfl'
env
.
hook_post_install
=
[
'drush fra -y'
,
'drush cc all'
]
env
.
hook_post_update
=
[
'drush fra -y'
,
'drush cc all'
]
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