Commit 4b00c2da authored by Alain Takoudjou's avatar Alain Takoudjou

add blt and some missing files

parent cfbe4d68
# Drupal editor configuration normalization
# @see http://editorconfig.org/
# This is the top-most .editorconfig file; do not search in parent directories.
root = true
# All files.
[*]
end_of_line = LF
indent_style = space
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[composer.{json,lock}]
indent_size = 4
# Drupal git normalization
# @see https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html
# @see https://www.drupal.org/node/1542048
# Normally these settings would be done with macro attributes for improved
# readability and easier maintenance. However macros can only be defined at the
# repository root directory. Drupal avoids making any assumptions about where it
# is installed.
# Define text file attributes.
# - Treat them as text.
# - Ensure no CRLF line-endings, neither on checkout nor on checkin.
# - Detect whitespace errors.
# - Exposed by default in `git diff --color` on the CLI.
# - Validate with `git diff --check`.
# - Deny applying with `git apply --whitespace=error-all`.
# - Fix automatically with `git apply --whitespace=fix`.
*.config text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.css text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.dist text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.engine text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php linguist-language=php
*.html text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=html
*.inc text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php linguist-language=php
*.install text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php linguist-language=php
*.js text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.json text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.lock text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.map text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.md text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.module text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php linguist-language=php
*.php text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php linguist-language=php
*.po text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.profile text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php linguist-language=php
*.script text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.sh text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php linguist-language=php
*.sql text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.svg text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.theme text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php linguist-language=php
*.twig text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.txt text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.xml text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.yml text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
# Define binary file attributes.
# - Do not treat them as text.
# - Include binary diff in patches instead of "binary files differ."
*.eot -text diff
*.exe -text diff
*.gif -text diff
*.gz -text diff
*.ico -text diff
*.jpeg -text diff
*.jpg -text diff
*.otf -text diff
*.phar -text diff
*.png -text diff
*.svgz -text diff
*.ttf -text diff
*.woff -text diff
*.woff2 -text diff
# Ignore composer includes.
composer.required.json
composer.suggested.json
11004000
\ No newline at end of file
# This file contains your BLT configuration. For a list of all available
# properties with current values run `blt config:dump`. Default values come
# from vendor/acquia/blt/config/build.yml.
#
# These values can be overridden at the command line using `--define`, i.e.:
# blt setup --define project.profile.name=minimal
#
# However, when tokens in this file are expanded, they will not use any such
# command-line overrides. For instance, `blt sync --define drush.aliases.local`
# will not modify `drush.default_alias`, even though `drush.default_alias` is
# set to `drush.aliases.local` by default.
project:
# Everyone: This will determine the the directory name of the new repository.
# Dev Desktop users: this should match your local site name.
machine_name: genero
# Used for enforcing correct git commit msg syntax.
prefix: GN
human_name: 'Genero'
profile:
name: standard
# This will be used as the local uri for all developers.
local:
protocol: http
hostname: 'local.${project.machine_name}.com'
# Configuration settings for new git repository.
git:
default_branch: master
remotes:
cloud: genero@svn-30582.prod.hosting.acquia.com:genero.git
deploy:
# When manually deploying a tag, also tag the source repository.
tag_source: true
drush:
# You can set custom project aliases in drush/sites/*.site.yml.
aliases:
# The remote environment from which the database will be pulled.
remote: '${project.machine_name}.test'
# The local environment against which all local drush commands are run.
local: self
# The drush alias against which all ci commands are run.
ci: self
# The default drush alias to be used when no environment is specified.
default_alias: '${drush.aliases.local}'
# An array of modules to be enabled or uninstalled automatically in local, ci,
# and deploy contexts.
modules:
local:
enable:
- dblog
- devel
- seckit
- views_ui
uninstall:
- acquia_connector
- shield
ci:
enable: { }
uninstall:
- acquia_connector
- shield
dev:
enable:
- acquia_connector
- shield
uninstall: { }
test:
enable:
- acquia_connector
- shield
uninstall:
- devel
- views_ui
prod:
enable:
- acquia_connector
- shield
uninstall:
- devel
- views_ui
# Valid values are:
# install - Installs Drupal from scratch.
# sync - Uses `blt drupal:sync` to pull a remote db from drush.aliases.remote.
# import - Imports a .sql file from setup.dump-file.
# setup.strategy: import
# Relative to the drupal docroot directory.
# setup.dump-file: /tmp/my-dump-file.sql
tests.run-server: true
tests.drupal.sudo-run-tests: false
# The local.hostname must be set to 127.0.0.1:8888 because we are using drush runserver to test the site.
project.local.hostname: 127.0.0.1:8888
drush.debug: false
# Override any settings as necessary by copying to local.blt.yml.
# Do not commit local.blt.yml to Git. It is specific to the machine it was created on.
#project:
# local:
# protocol: http
# hostname: mysite.dev
# You can set custom project aliases in drush/sites/*.site.yml.
# All local:* targets are run against drush.aliases.local.
#drush:
# aliases:
# local: local.mysite.dev
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment