forked from dpc-sdp/tide
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated development stack and fixed CI. (dpc-sdp#31)
- Loading branch information
1 parent
1f447b4
commit a10e3ee
Showing
17 changed files
with
116 additions
and
789 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,48 @@ | ||
MODULE_NAME=tide | ||
COMPOSE_FILE=docker-compose.yml:docker-compose.local.yml | ||
PHP_LINT_TARGETS="." | ||
PHPCS_TARGETS="tide.info.yml" | ||
COMPOSER_DEV_URL=https://raw.githubusercontent.com/dpc-sdp/tide/master/composer.dev.json?token=AAHUz0o0rlonLN0CbgcxwADlZo5zVyhvks5bVRWowA | ||
|
||
################################################################################ | ||
# Local overrides. | ||
## | ||
# File with per-project environment variables. | ||
# | ||
# Copy lines below into "env.local" file and exclude "env.local" file globally. | ||
################################################################################ | ||
# It is used by Ahoy and other scripts to read default values. | ||
# | ||
# The values must be scalar (cannot be another variable). This file must have | ||
# at least 1 valid (exportable) assignment of value. | ||
# | ||
# You may create .env.local file and store your local environment variables | ||
# there - it will also be loaded by Ahoy and it is excluded from git. | ||
# | ||
# This file may be left as is to assume default values specified in .ahoy.yml. | ||
|
||
# Uncomment and epcify your GitHub token below (CI already uses this). | ||
# GITHUB_TOKEN=<INSERT YOUR TOKEN HERE> | ||
# Project name. | ||
# Defaults to the name of the current directory with stripped hyphens and | ||
# underscores. | ||
# PROJECT_NAME=mysite | ||
|
||
# Uncomment below to install suggsted packages. | ||
# INSTALL_SUGGEST=1 | ||
# Path to the root of the project inside of the container. | ||
# APP=/app | ||
|
||
# Path to the site installation relative to the current directory. | ||
# WEBROOT=docroot | ||
|
||
# Local development URL. | ||
# Make sure that there is no trailing slash in the value. | ||
# Defaults to http://<CURRENTDIR>.docker.amazee.io | ||
# LOCALDEV_URL=http://mysite.docker.amazee.io | ||
|
||
# Docker Compose project name. | ||
# All containers will have this prefix. | ||
# Defaults to $PROJECT_NAME | ||
# COMPOSE_PROJECT_NAME=mysite | ||
|
||
# Database connection details. | ||
# MYSQL_HOST=mariadb | ||
# MYSQL_PORT=3306 | ||
|
||
# Change to composer.json for site build. | ||
COMPOSER=composer.build.json | ||
|
||
# Uncomment this for site build and set the profile name. | ||
DRUPAL_PROFILE=tide | ||
|
||
# Uncomment to run the build in suggest mode. | ||
# In this mode, modules from "suggested" part of composer.json will be | ||
# installed. | ||
# INSTALL_SUGGEST=1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
# Ignore files for distribution archives. | ||
|
||
.gitattributes export-ignore | ||
.gitignore export-ignore | ||
.github export-ignore | ||
.circleci export-ignore | ||
.circleci/config.yml export-ignore | ||
.env export-ignore | ||
tests export-ignore | ||
circle.yml export-ignore | ||
composer.lock export-ignore | ||
phpcs.xml export-ignore | ||
phpunit.xml export-ignore | ||
xdebug.sh export-ignore | ||
composer.json export-ignore | ||
dev-init.sh export-ignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
vendor | ||
vendor-local | ||
# To ignore OS temporary files use global .gitignore | ||
# https://help.github.com/articles/ignoring-files/#create-a-global-gitignore | ||
|
||
/composer.lock | ||
build | ||
/composer.build.json | ||
/composer.build.lock | ||
/docroot | ||
/dpc-sdp | ||
.env.local | ||
docker-compose.override.yml | ||
screenshots | ||
composer.dev.json | ||
composer.build.json | ||
composer.build.lock | ||
vendor |
Oops, something went wrong.